forked from rlesniak/tind3r.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.dev.js
122 lines (107 loc) · 2.75 KB
/
webpack.config.dev.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const env = process.env.NODE_ENV || 'development';
module.exports = {
entry: [
'babel-polyfill',
'react-hot-loader/patch',
'webpack-hot-middleware/client?path=/__webpack_hmr&timeout=20000',
'./src/index.js',
// the entry point of our app
],
output: {
filename: '[name].js',
// the output bundle
path: path.resolve(__dirname, 'dist'),
publicPath: '/static/',
// necessary for HMR to know where to load the hot update chunks
},
resolve: {
extensions: ['.js'],
modules: [path.resolve(__dirname, 'src/'), 'node_modules'],
alias: {
components: path.resolve(__dirname, 'src/components'),
forerunnerdb: path.resolve(__dirname, 'node_modules/forerunnerdb/js/builds/all.js'),
},
},
devtool: 'cheap-source-map',
module: {
rules: [
{
test: /\.jsx?$/,
use: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.scss$/,
use: [
{
loader: 'style-loader', // creates style nodes from JS strings
},
{
loader: 'css-loader',
options: {
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
includePaths: [path.resolve(__dirname, 'src', 'styles')],
},
},
],
},
{
test: /\.css$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
],
},
{
test: require.resolve('react-addons-perf'),
use: 'expose-loader?Perf',
},
],
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
// enable HMR globally
new webpack.NamedModulesPlugin(),
// prints more readable module names in the browser console on HMR updates
new webpack.NoEmitOnErrorsPlugin(),
// do not emit compiled assets that include errors
new webpack.ProvidePlugin({
autobind: 'autobind-decorator',
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(env),
},
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: module => module.context && module.context.indexOf('node_modules') !== -1,
}),
new HtmlWebpackPlugin({
template: './index.html',
inject: 'body',
filename: 'index.html',
}),
],
devServer: {
host: 'localhost',
port: 3000,
historyApiFallback: true,
// respond to 404s with index.html
hot: true,
// enable HMR on the server
},
};