-
Notifications
You must be signed in to change notification settings - Fork 39
/
webpack.config.js
80 lines (76 loc) · 1.61 KB
/
webpack.config.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
const appConfig = require('./src/App/Config.js').config
const path = require('path')
const webpack = require('webpack')
const isProd = process.env.NODE_ENV === 'production'
const entries = [path.join(__dirname, 'support/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
})
)
}
module.exports = {
entry: entries,
context: __dirname,
target: 'web',
output: {
path: path.join(__dirname, 'static', 'dist'),
filename: 'bundle.js',
publicPath: appConfig.public_path
},
module: {
loaders: [
{
test: /\.purs$/,
loader: 'purs-loader',
exclude: /node_modules/,
query: isProd ? {
bundle: true,
bundleOutput: 'static/dist/bundle.js'
} : {
psc: 'psa',
pscIde: true
}
}
],
},
plugins: plugins,
resolveLoader: {
modules: [
path.join(__dirname, 'node_modules')
]
},
resolve: {
alias: {
'react': 'preact-compat',
'react-dom': 'preact-compat',
'create-react-class': 'preact-compat/lib/create-react-class'
},
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
}
}