-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.common.config.js
66 lines (59 loc) · 1.95 KB
/
webpack.common.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
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const autoprefixer = require('autoprefixer');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
output: {
path: __dirname + '/build/',
filename: '[name].js'
},
plugins: [
new ExtractTextPlugin('[name].css', { allChunks: true }),
// http://stackoverflow.com/questions/25384360/how-to-prevent-moment-js-from-loading-locales-with-webpack
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /ru/),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery'
}),
new webpack.optimize.CommonsChunkPlugin('shared.js'),
new HtmlWebpackPlugin({
inject: false,
filename: 'dashboard.html',
template: './src/dashboard.html'
}),
new HtmlWebpackPlugin({
inject: false,
filename: 'index.html',
template: './src/unify/index.html'
}),
new HtmlWebpackPlugin({
inject: false,
filename: 'news.html',
template: './src/unify/news.html'
}),
new HtmlWebpackPlugin({
inject: false,
filename: 'tariffs.html',
template: './src/unify/tariffs.html'
}),
new HtmlWebpackPlugin({
inject: false,
filename: 'guides.html',
template: './src/unify/guides.html'
})
],
module: {
loaders: [
{ test: /\.scss$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader!postcss-loader!sass-loader') },
{ test: /\.css$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader') },
{ test: /\.(png|jpg|gif|txt|svg|woff2|otf|eot|ttf|woff).*$/, loader: 'file-loader?name=[path][name].[ext]'},
{ test: /\.json$/, loader: 'json-loader'}
]
},
postcss: [ autoprefixer({ browsers: ['last 2 versions', 'Chrome > 36'] }) ],
// Automatically transform files with these extensions
resolve: {
extensions: ['', '.js', '.jsx', '.css']
}
};