-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.dev.js
More file actions
51 lines (49 loc) · 1.23 KB
/
webpack.config.dev.js
File metadata and controls
51 lines (49 loc) · 1.23 KB
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
const path = require('path');
const webpack = require('webpack');
const CorenWebpack = require('coren/lib/client/webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const extractCSS = new ExtractTextPlugin({
filename: 'css/[name].css',
allChunks: true
});
const config = new CorenWebpack(__dirname, {
// entry is defined in `coren.config.js`
devServer: {
headers: {"Access-Control-Allow-Origin": "http://localhost:9393"}
},
entry: {
index: [
'webpack-dev-server/client?http://localhost:5556',
'babel-polyfill',
'./src/root.js'
]
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js',
publicPath: 'http://localhost:5556/dist/'
},
module: {
rules: [
{
test: /\.css$/,
use: extractCSS.extract(["css-loader?minimize"])
}
]
},
resolve: {
extensions: ['.js']
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({name: "$vendor", filename: "vendor.bundle.js"}),
new webpack.NoEmitOnErrorsPlugin(),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("development"),
isBrowser: true
}
}),
extractCSS
]
});
module.exports = config.output();