-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.production.config.js
51 lines (45 loc) · 1.14 KB
/
webpack.production.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
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var path = require('path');
var sassLoaders = [
'css-loader',
'autoprefixer-loader?browsers=last 2 version',
'sass-loader?includePaths[]=' + path.resolve(__dirname, './src'),
];
module.exports = {
entry: {
app: [ './src/index' ]
},
output: {
path: path.join(__dirname, './build'),
filename: '[name].js',
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel'
},
{
test: /\.scss$/,
loaders: [
'style-loader',
'css-loader',
'autoprefixer-loader?browsers=last 2 version',
'sass-loader?includePaths[]=' + path.resolve(__dirname, './src'),
],
loader: ExtractTextPlugin.extract('style-loader', sassLoaders.join('!'))
}
]
},
resolve: {
extensions: ['', '.js', '.jsx', '.scss'],
modulesDirectories: ['src', 'node_modules']
},
plugins: [
new ExtractTextPlugin('[name].css'),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin()
]
}