-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
70 lines (68 loc) · 2.03 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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const srcPath = path.join(__dirname, 'app');
const buildPath = path.join(__dirname, 'dist');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const webpack = require('webpack');
var config = {
entry: ['babel-polyfill','./app/index.js'],
output: {
path: buildPath,
filename: 'index_bundle.js',
publicPath: '/' //base path for assets
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['env','react','es2015-ie','stage-2'] ,
plugins: ['transform-class-properties']
}
}, {
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [ 'css-loader' ]
})
}, {
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader','autoprefixer-loader','sass-loader'],
// publicPath: '/'
})
}, {
test: /\.svg$/,
use: [ 'svg-sprite-loader', 'svgo-loader']
}
]
},
devServer: {
historyApiFallback: true
},
plugins: [
new HtmlWebpackPlugin({
template: path.resolve(srcPath, 'index.html')
}),
new ExtractTextPlugin({
filename: "[name].css",
disable: false,
allChunks: true,
ignoreOrder: true
})
]
}
if(process.env.NODE_ENV === 'production') {
config.plugins.push(
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}
}),
new webpack.optimize.UglifyJsPlugin()
)
}
module.exports = config;