forked from RickWong/react-isomorphic-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.client.js
More file actions
44 lines (43 loc) · 1.05 KB
/
webpack.client.js
File metadata and controls
44 lines (43 loc) · 1.05 KB
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
var webpack = require("webpack");
var path = require("path");
module.exports = {
target: "web",
cache: false,
context: __dirname,
devtool: false,
entry: ["./src/client"],
output: {
path: path.join(__dirname, "static/dist"),
filename: "client.js",
chunkFilename: "[name].[id].js",
publicPath: "dist/"
},
plugins: [
new webpack.DefinePlugin({__CLIENT__: true, __SERVER__: false}),
new webpack.DefinePlugin({"process.env": {NODE_ENV: '"production"'}}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin()
],
module: {
loaders: [
{include: /\.json$/, loaders: ["json-loader"]},
{include: /\.js$/, loaders: ["babel-loader?stage=0&optional=runtime&plugins=typecheck"], exclude: /node_modules/}
]
},
resolve: {
alias: {
react: path.join(__dirname, "node_modules/react")
},
modulesDirectories: [
"src",
"node_modules",
"web_modules"
],
extensions: ["", ".json", ".js"]
},
node: {
__dirname: true,
fs: 'empty'
}
};