webpack.dev.config.js
1.36 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
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const merge = require('webpack-merge');
const webpackBaseConfig = require('./webpack.base.config.js');
const fs = require('fs');
fs.open('./src/config/env.js', 'w', function(err, fd) {
const buf = new Buffer('export default "development";');
fs.write(fd, buf, 0, buf.length, 0, function() {});
});
module.exports = merge(webpackBaseConfig, {
// devtool: '#source-map',
output: {
publicPath: '/dist/',
filename: 'js/[name].js',
chunkFilename: 'js/[name].chunk.js'
},
plugins: [
new webpack.DefinePlugin({
PRODUCTION: 'false'
}),
new ExtractTextPlugin({
filename: 'css/[name].css',
allChunks: true
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendors',
filename: 'js/vendors.js',
minChunks: 2
})
],
devServer: {
openPage: 'dist/coupon.html',
proxy: {
'/ufoPlatform/**': {
target: 'http://java-ufo-platform.test3.ingress.dev.yohocorp.com',
changeOrigin: true
}
},
headers: {
'Access-Control-Allow-Origin': '*',
// "Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS",
// "Access-Control-Allow-Headers": "X-Requested-With, content-type, Authorization"
},
// disableHostCheck: true
}
});