-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
71 lines (68 loc) · 2.04 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
/* global __dirname */
var webpack = require('webpack');
var CompressionPlugin = require("compression-webpack-plugin");
var path = require('path');
var buildPath = path.resolve(__dirname, 'geo_app', 'static', 'build');
var assetsPath = path.resolve(__dirname, 'assets');
var nodePath = path.resolve(__dirname, 'node_modules');
module.exports = {
devtool: 'inline-source-map',
entry: {
app: [path.resolve(assetsPath, 'scripts', 'main.js')],
styles: [
path.resolve(assetsPath, 'styles', 'main.less'),
],
vendor: [
'jquery',
'moment',
'underscore',
],
},
output: {
path: buildPath,
filename: '[name].bundle.js',
publicPath: '/static/build/',
},
module: {
rules: [
{
test: /\.less$/,
use: ['style-loader', 'css-loader', 'less-loader'],
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
// the url-loader uses DataUrls.
// the file-loader emits files.
{
test: /\.(woff|woff2)(\?v=\d+\.\d+\.\d+)?$/,
use: 'url-loader?limit=10000&mimetype=application/font-woff',
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
use: 'url-loader?limit=10000&mimetype=application/octet-stream',
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
use: 'file-loader',
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: 'url-loader?limit=10000&mimetype=image/svg+xml',
},
],
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
filename: 'vendor.bundle.js',
minChunks: Infinity,
chunks: ['app', 'vendor'],
}),
new CompressionPlugin(),
],
node: {
fs: 'empty', // avoids error messages
},
};