-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwebpack.config.dev.js
45 lines (44 loc) · 961 Bytes
/
webpack.config.dev.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
var path = require('path');
var webpack = require('webpack');
module.exports = {
devtool: 'source-map',
entry: [
'webpack-hot-middleware/client',
'./app/js/main'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/static/'
},
resolve: {
alias: {
images: path.join(__dirname, '/app/assets/images')
}
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('development')
}
}),
new webpack.NoErrorsPlugin()
],
module: {
loaders: [{
test: /\.js$/,
loaders: ['babel'],
include: path.join(__dirname, 'app')
}, {
test: /\.less$/,
loader: "style!css!less"
}, {
test: /\.css$/,
loader: "style!css"
}, {
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2)$/,
loader: 'file?name=images/[hash].[ext]'
}]
}
};