-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
61 lines (59 loc) · 1.18 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
61
const path = require('path');
const webpack = require('webpack');
const options = {
debug: true,
name: 'react-simple-stack',
entry: {
app: './src/app'
},
output: {
path: path.join(__dirname, 'dist/static'),
filename: '[name].bundle.js',
publicPath: '/static/'
},
module: {
loaders: [
{ test: /\.(jpe?g|png|gif|svg)$/i, loader: 'url-loader' },
{
test: /\.scss$/,
loaders: ['style', 'css', 'sass']
},
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel'
}
]
},
devServer: {
debug: true,
hot: true,
inline: true,
port: 8080,
host: '0.0.0.0',
devtool: 'source-map',
contentBase: './src',
historyApiFallback: {
rewrites: [
{ from: /.*\.html/, to: '/index.html' }
]
},
proxy: {
'/api/*': {
target: 'http://www.nytimes.com/',
pathRewrite: {
'/api': ''
},
changeOrigin: true
}
}
},
plugins: [
new webpack.HotModuleReplacementPlugin()
],
resolve: {
root: path.resolve('./src'),
extensions: ['', '.js', '.less']
}
};
module.exports = options;