-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
executable file
·58 lines (51 loc) · 2.25 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
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var imgPath = path.resolve('node_modules/ushahidi-platform-pattern-library/assets/');
var extractCss = new ExtractTextPlugin('[name].[chunkhash].bundle.css');
module.exports = {
devtool: 'source-map',
entry: {},
module: {
loaders: [
{ test: /\.js$/, exclude: [/app\/lib/, /node_modules/], loader: 'ng-annotate!babel' },
{ test: /\.html$/, loader: 'html?attrs[]=img:src&attrs[]=use:xlink:href&attrs[]=link:href&root='+imgPath },
{ test: /\.scss$/, loader: extractCss.extract('style', 'css!resolve-url!sass?sourceMap') },
{ test: /\.css$/, loader: extractCss.extract('style', 'css') },
{ test: /\.png/, loader: 'url?limit=10000' },
{ test: /\.svg/, loader: 'svg-url?limit=1' },
{ test: /\.woff/, loader: 'url?limit=10000' },
{ test: /\.ttf|\.eot/, loader: 'file' },
{ test: /\.json$/, exclude:[/manifest.json$/],loader: 'json' },
{ test: /manifest.json$/, loader: 'file-loader?name=manifest.json!web-app-manifest-loader' }
]
},
plugins: [
extractCss,
// Skip locales
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new webpack.DefinePlugin({
BACKEND_URL: JSON.stringify(process.env.BACKEND_URL || 'http://backend.url.undefined')
}),
// Injects bundles in your index.html instead of wiring all manually.
// It also adds hash to all injected assets so we don't have problems
// with cache purging during deployment.
new HtmlWebpackPlugin({
template: 'app/index.html',
inject: 'body',
hash: false
}),
// Automatically move all modules defined outside of application directory and pattern library
// to vendor bundle. If you are using more complicated project structure, consider to specify
// common chunks manually.
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: function (module, count) {
return module.resource &&
module.resource.indexOf(path.resolve(__dirname, 'app')) === -1 &&
module.resource.indexOf('ushahidi-platform-pattern-library') === -1;
}
})
]
};