-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.dev.config.js
More file actions
63 lines (58 loc) · 1.81 KB
/
webpack.dev.config.js
File metadata and controls
63 lines (58 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
const path = require('path');
const webpack = require('webpack');
const BUILD_DIR = path.resolve(__dirname,'build/client');
const ENTRY_DIR = ['./src/app/app.js'];
const DEV_ENTRY = ENTRY_DIR.concat(['webpack-hot-middleware/client']);
let webpackConfig = {
entry: {
// the app key caused the file name to output as app.js in output:[name]
app: DEV_ENTRY
},
output: {
path: BUILD_DIR,
filename: '[name].bundle.js',
publicPath: '/'
},
plugins:[
new webpack.HotModuleReplacementPlugin(),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery'
})
],
module: {
loaders: [
{
test: /\.js$/,
loaders:['react-hot-loader', 'babel-loader'],
exclude: /node_modules/
},
{
test: /\.css$/,
loaders: [ 'style-loader', 'css-loader' ]
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader?name=[name].[ext]'
},
{
test: /\.(woff|woff2)(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader?name=[name].[ext]&limit=10000&mimetype=application/font-woff'
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader?name=[name].[ext]&limit=10000&mimetype=application/octet-stream'
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader?name=[name].[ext]&limit=10000&mimetype=image/svg+xml'
}
]
},
stats:{
colors: true
},
devtool: 'cheap-module-eval-source-map'
}
module.exports = webpackConfig;