-
Notifications
You must be signed in to change notification settings - Fork 16
/
webpack.config.js
79 lines (78 loc) · 1.82 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
72
73
74
75
76
77
78
79
// http://webpack.github.io/docs/configuration.html
// http://webpack.github.io/docs/webpack-dev-server.html
const app_root = 'src'; // the app root folder: src, src_users, etc
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
app_root: app_root, // the app root folder, needed by the other webpack configs
entry: [
// http://gaearon.github.io/react-hot-loader/getstarted/
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
'babel-polyfill',
__dirname + '/' + app_root + '/index.js',
],
output: {
path: __dirname + '/public/js',
publicPath: 'js/',
filename: 'bundle.js',
},
module: {
loaders: [
{
test: /\.js$/,
loader: ["babel-loader"],
query: {
presets: ['react', "stage-2"]
},
exclude: /node_modules/,
},
{
// https://github.com/jtangelder/sass-loader
test: /\.scss$/,
loaders: ['style', 'css', 'sass'],
},
{
test: /\.css$/,
loaders: ['style', 'css'],
},
{
test: /\.less$/,
loaders: ["style", 'css', 'less'],
},
{
test: /\.geojson$/,
loaders: ['json-loader'],
},
{
test: /\.json$/,
loaders: ['json-loader'],
},
{
test: /\.(jpg|png|gif)$/,
loader: 'url-loader',
options: {
limit: 25000,
},
},
],
},
devServer: {
contentBase: __dirname + '/public',
},
node: {
fs: 'empty'
},
plugins: [
new CleanWebpackPlugin(['css/main.css', 'js/bundle.js'], {
root: __dirname + '/public',
verbose: true,
dry: false, // true for simulation
}),
],
resolve: {
alias: {
webworkify: 'webworkify-webpack'
}
},
};