-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.client.js
119 lines (110 loc) · 2.57 KB
/
webpack.config.client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const path = require('path')
const webpack = require('webpack')
const isProd = process.env.NODE_ENV === 'production'
const entries = [path.join(__dirname, 'support/client.entry.js')]
const plugins = [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}),
]
if (isProd) {
plugins.push(
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false
})
)
} else {
entries.unshift('webpack-hot-middleware/client?reload=true');
plugins.push(
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin()
)
}
const config = {
entry: entries,
output: {
path: path.join(__dirname, 'static', 'dist'),
filename: 'bundle.js',
publicPath: '/dist/'
},
module: {
loaders: [
{
test: /\.purs$/,
loader: 'purs-loader',
exclude: /node_modules/,
query: isProd ? {
bundle: true,
bundleOutput: 'static/dist/bundle.js'
} : {
psc: 'psa'
}
}
],
},
plugins: plugins,
resolveLoader: {
modules: [
path.join(__dirname, 'node_modules')
]
},
resolve: {
alias: {
'react': 'preact-compat',
'react-dom': 'preact-compat'
},
modules: [
'node_modules',
'bower_components'
],
extensions: ['.js', '.purs']
},
performance: { hints: false },
stats: {
hash: false,
timings: false,
version: false,
assets: false,
errors: true,
colors: false,
chunks: false,
children: false,
cached: false,
modules: false,
chunkModules: false
}
}
// If this file is directly run with node, start the development server
// instead of exporting the webpack config.
if (require.main === module) {
const compiler = webpack(config)
const serverCompiler = webpack(require('./webpack.config.server.js'))
console.log('Compiling...')
serverCompiler.run((err) => {
if (err) return console.error(err)
const server = require('./dist/server.js')
server([
require('connect-history-api-fallback')(),
require("webpack-dev-middleware")(compiler, {
publicPath: config.output.publicPath,
stats: {
assets: false,
cached: false,
cachedAssets: false,
children: false,
chunks: false,
chunkModules: false,
chunkOrigins: false,
hash: false,
performance: false,
timing: false,
version: false
}
}),
require("webpack-hot-middleware")(compiler)
])()
})
} else {
module.exports = config
}