-
Notifications
You must be signed in to change notification settings - Fork 93
/
webpack.config.js
60 lines (57 loc) · 1.35 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
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
const path = require( 'path' );
const isProduction = process.env.NODE_ENV === 'production';
const MiniCSSExtractPlugin = require( 'mini-css-extract-plugin' );
const updatedConfig = {
...defaultConfig,
entry: {
...defaultConfig.entry,
index : './src/index',
block : './src/block.js',
store : './src/data/store.js',
print : './src/assets/less/print.less',
frontend : './src/assets/less/frontend.less',
},
output: {
path: path.resolve( __dirname, 'assets/build' ),
},
module: {
...defaultConfig.module,
rules: [
...defaultConfig.module.rules,
{
test: /\.less$/,
use: [
{ loader: MiniCSSExtractPlugin.loader, options: { emit: true } },
'css-loader',
'less-loader',
],
},
],
},
plugins: [
...defaultConfig.plugins,
new MiniCSSExtractPlugin( {
filename: '[name].css',
chunkFilename: '[id].css',
} ),
],
};
if ( ! isProduction ) {
updatedConfig.devServer = {
devMiddleware: {
writeToDisk: true,
},
allowedHosts: 'all',
host: 'wedocs.test',
port: 8886,
proxy: {
'/assets/build': {
pathRewrite: {
'^/assets/build': '',
},
},
},
};
}
module.exports = updatedConfig;