-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.dev.js
97 lines (89 loc) · 2.25 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
const webpack = require('webpack');
const path = require('path');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
entry: {
app: [
'webpack-hot-middleware/',
'./src/app.js'
]
},
output: {
path: path.join(__dirname, 'src/dist'),
filename: 'js/[name].js',
publicPath: '/'
},
watch: true,
watchOptions: {
aggregateTimeout: 100
},
devtool: 'cheap-inline-module-source-map',
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
NODE_ENV: JSON.stringify('development')
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'libs',
filename: 'js/libs.js',
minChunks: 2
}),
new ExtractTextPlugin({
filename: 'styles/app.css',
allChunks: true
})
],
resolve: {
modules: [
path.resolve(__dirname, 'src/app'),
path.resolve(__dirname, 'src/app/redux'),
path.resolve(__dirname, 'src/assets'),
'node_modules'
],
extensions: ['.js', '.json', '.jsx', '.scss', '.css']
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
plugins: ['transform-runtime']
}
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract({
fallbackLoader: 'style-loader',
loader: 'css-loader!sass-loader!postcss-loader'
})
},
{
test: /\.woff$/,
loader: 'url-loader?limit=65000&mimetype=application/font-woff&name=fonts/[name].[ext]'
},
{
test: /\.woff2$/,
loader: 'url-loader?limit=65000&mimetype=application/font-woff2&name=fonts/[name].[ext]'
},
{
test: /\.[ot]tf$/,
loader: 'url-loader?limit=65000&mimetype=application/octet-stream&name=fonts/[name].[ext]'
},
{
test: /\.eot$/,
loader: 'url-loader?limit=65000&mimetype=application/vnd.ms-fontobject&name=fonts/[name].[ext]'
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loader: 'file-loader?name=img/[name].[ext]'
},
{
test: /\.css$/,
loader: 'file-loader?name=styles/[name].[ext]'
}
]
}
};