-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathwebpack.config.common.js
60 lines (56 loc) · 1.26 KB
/
webpack.config.common.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
const user = require('./scripts/utils/format-config')(require('./main.config.js'))
const { EnvironmentPlugin } = require('webpack')
const CSSLoaders = [
{
loader: 'css-loader',
options: {
url: !!(user.appEnv === 'development'),
sourceMap: true
}
},
{
loader: 'postcss-loader',
options: {
sourceMap: true
}
}
]
if (user.css.preprocessorLoader) {
CSSLoaders.push(
{
loader: user.css.preprocessorLoader,
options: {
sourceMap: true
}
}
)
}
const webpack = {
output: {
publicPath: user.paths.basepath,
// we bundle from the www folder to avoid messing with the webpack dev middleware
// all entries src/dest path are converted through scripts/utils/format-config.js
path: user.paths.www,
filename: '[name]',
chunkFilename: '[name].[id].chunk.js'
},
resolve: {
alias: {
// if you need to create aliases for your JS imports, do it here :
// utils: path.join(user.paths.src, 'utils')
}
},
module: {
rules: [
{
test: /\.(js)$/,
loader: 'babel-loader',
exclude: /(node_modules|bower_components)/
}
]
},
plugins: [
new EnvironmentPlugin(['NODE_ENV'])
]
}
module.exports = { CSSLoaders, webpack, user }