-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
76 lines (75 loc) · 1.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const devMode = process.env.NODE_ENV !== 'production';
module.exports = {
entry: __dirname + '/js/App.js',
output: {
path: __dirname,
filename: 'bundle.js'
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.(js)$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015', 'stage-3'],
plugins: ['react-html-attrs']
}
},
{
test: /\.less$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV === 'development',
reloadAll: true,
},
},
{
loader: "css-loader",
options: {
sourceMap: true,
modules: true,
localIdentName: "[local]"
}
},
{
loader: "less-loader"
}
]
},
{
test: /\.(jpg|png|gif|svg|pdf|ico)$/,
use: [{
loader: 'file-loader',
options: {
name: '[path][name]-[hash:8].[ext]'
},
}]
},
]
},
plugins: ([
new ExtractTextPlugin('./styles/global.css', {allChunks: true}),
new BrowserSyncPlugin(
{
proxy: 'http://localhost:8080/'
},
{
reload: false
}
),
new MiniCssExtractPlugin({
filename: "bundle.css"
})
]),
stats: {colors: true},
resolve: {
extensions: ['*', '.js', '.es6']
}
};