-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.config.js
executable file
·57 lines (56 loc) · 1.55 KB
/
webpack.dev.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
const path = require('path');
const webpack = require('webpack');
module.exports = {
devtool: 'source-map',
entry: ['react-hot-loader/patch', './src/entry.jsx'],
output: {
path: path.resolve(__dirname, './libs'),
publicPath: '/libs',
filename: 'index.js',
},
resolve: {
extensions: ['.js', '.jsx'],
modules: ['src', 'node_modules'],
},
externals: { // 指定采用外部 CDN 依赖的资源,不被webpack打包
'avg-core': 'AVG',
},
module: {
rules: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' },
{ test: /\.jsx$/, exclude: /node_modules/, loader: 'babel-loader' },
],
},
plugins: [
// new webpack.optimize.OccurrenceOrderPlugin(),
// // new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('development'),
}
}),
],
devServer: {
contentBase: './',
historyApiFallback: {
rewrites: [
{ from: /^\/libs\/index\.min\.js$/, to: '/libs/index.js' },
{ from: /^\/libs\/index\.min\.js.map$/, to: '/libs/index.js.map' },
{ from: /^\/libs\/pixi\.min\.js$/, to: '/node_modules/pixi.js/dist/pixi.js' },
{ from: /^\/libs\/avg\.min.js$/, to: '/node_modules/avg-core/dist/avg.js' },
]
},
host: '127.0.0.1',
port: 6600,
hot: true,
// inline: true,
// progress: true,
/* uncomment it to load assets from your cdn */
// proxy: {
// '/assets/': {
// target: '<your cdn domain>',
// secure: false
// }
// }
},
};