-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
71 lines (67 loc) · 1.88 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 path = require('path');
var webpack = require('webpack');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var dir_js = path.resolve(__dirname, 'js');
var dir_html = path.resolve(__dirname, 'html');
var dir_assets = path.resolve(__dirname, 'assets');
var dir_scss = path.resolve(__dirname, 'scss');
var dir_build = path.resolve(__dirname, 'dist');
module.exports = {
entry: path.resolve(dir_js, 'main.jsx'),
resolve: {
alias: {
'app': path.resolve(__dirname, 'js'),
'react-highcharts': 'react-highcharts/dist'
},
// No need to add these extensions when importing
extensions: ['', '.js', '.jsx']
},
output: {
path: dir_build,
filename: 'app.js'
},
devServer: {
contentBase: dir_build
},
module: {
loaders: [
{
loader: 'react-hot',
test: dir_js
},
{
loader: 'babel',
test: dir_js,
query: {
presets: ['es2015', 'react']
}
},
{
loader: ExtractTextPlugin.extract('style-loader', 'css-loader!sass-loader'),
test: dir_scss
}
]
},
plugins: [
new webpack.ProvidePlugin({
config: 'json-loader!' + path.resolve(__dirname, 'config/local.json')
}),
new CopyWebpackPlugin([
{ from: dir_html } // Copy HTMLs to output.path
]),
new CopyWebpackPlugin([{
from: dir_assets,
to: 'assets'
}]),
new ExtractTextPlugin('style.css', {
allChunks: true
}),
new webpack.NoErrorsPlugin()
],
stats: {
colors: true
},
devtool: 'source-map'
};