-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
66 lines (64 loc) · 1.94 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
const path = require('path');
const webpack = require('webpack');
const poststylus = require('poststylus');
module.exports = {
entry: {
//v0: './src/v0/index.js',
v1: './src/v1/index.js',
'widgets/players': './src/widgets/players.js',
vendor: [
'datatables.net',
'datatables.net-buttons',
'highcharts/highstock',
'highcharts/themes/dark-unica',
'highcharts/highcharts-more',
'highcharts/modules/solid-gauge'
]
},
output: {
path: path.join(__dirname, 'static'),
filename: "[name].js"
},
plugins: [
new webpack.DefinePlugin({
apiHost: JSON.stringify(process.env.API_HOST || 'https://survarium.pro')
}),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
Highcharts: 'highcharts/highstock'
}),/*
// commonized JQUERY for v1 and widgets,
new webpack.optimize.CommonsChunkPlugin({ name: 'commons', filename: 'shared.js', chunks: ['v1', 'widgets/players'] }),
new webpack.optimize.CommonsChunkPlugin({ name: 'vendor', filename: 'vendor.js', chunks: ['v1', 'widgets/players'] }),
new webpack.optimize.CommonsChunkPlugin({ name: 'commons', filename: 'common.js', chunks: ['vendor'] })*/
new webpack.optimize.CommonsChunkPlugin({ name: 'commons', filename: 'common.js', chunks: ['v1'] }),
new webpack.optimize.CommonsChunkPlugin({ name: 'vendor', filename: 'vendor.js', chunks: ['v1'] })
],
module: {
loaders: [
{ test: /\.(jpe?g|png|gif|svg)$/i, loader: 'url?limit=10000!img?progressive=true' },
{ test: /\.styl$/, loader: 'style-loader!css-loader!stylus-loader' },
{ test: /\.css$/, loader: 'style-loader!css-loader' },
{
test: /\.js?$/,
exclude: /(node_modules|bower_components|web_modules)/,
loader: 'babel',
query: {
presets: ['es2015']
}
}
]
},
stylus: {
use: [
poststylus([ 'autoprefixer', 'rucksack-css' ])
]
},
devServer: {
contentBase: path.join(__dirname, 'static'),
progress: true,
colors: true
}
};