forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack-dev-server.config.js
38 lines (37 loc) · 982 Bytes
/
webpack-dev-server.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
var webpack = require("webpack");
module.exports = {
context: __dirname,
entry: [
"webpack-dev-server/client?http://localhost:4002",
"webpack/hot/dev-server",
"./test/dev-hook.jsx",
],
output: {
path: __dirname + "/dist",
filename: "bundle.js",
sourceMapFilename: "[file].map",
},
module: {
loaders: [
{test: /\.jsx?$/, exclude: /node_modules/, loader: 'babel-loader?stage=0'},
{test: /\.jsx$/, exclude: /node_modules/, loader: 'react-hot-loader'}
]
},
plugins: [
new webpack.optimize.DedupePlugin(),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify('development')
}
}),
],
debug: true,
devtool: 'eval',
publicPath: '/examples/',
resolve: {
extensions: ["", ".webpack.js", ".web.js", ".js", ".jsx"],
alias: {
'react-grid-layout': __dirname + '/index-dev.js'
}
}
};