-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.base.js
54 lines (52 loc) · 1.19 KB
/
webpack.config.base.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
import path from 'path';
import precss from 'precss';
import postcssMixins from 'postcss-mixins';
import postcssPartialImport from 'postcss-partial-import';
export default {
module: {
loaders: [
{
test: /\.jsx?$/,
loaders: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.json$/,
loader: 'json-loader',
},
{
test: /\.svg$/,
loader: 'raw-loader',
}
]
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js',
libraryTarget: 'commonjs2'
},
resolve: {
extensions: ['', '.js', '.jsx', '.json'],
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main'],
modulesDirectories: ['node_modules', 'app'],
},
plugins: [
],
externals: [
'postcss',
'postcss-mixins',
'precss',
'postcss-partial-import',
// put your node 3rd party libraries which can't be built with webpack here
// (mysql, mongodb, and so on..)
],
postcss: () => [
postcssPartialImport,
postcssMixins,
precss({
properties: { disable: true },
mixins: { disable: true },
import: { disable: true },
})
],
};