-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwebpack.config.js
More file actions
61 lines (50 loc) · 1.34 KB
/
webpack.config.js
File metadata and controls
61 lines (50 loc) · 1.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"use strict";
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
// const ExtractTextPlugin = require("extract-text-webpack-plugin");
const path = require("path");
let config = {
devtool: "source-map",
debug: true,
failOnError: true,
entry: [ "./src/App.js"],
output: {
path: path.join(__dirname, "dist"),
filename: "bundle.[hash].js",
publicPath: "/",
sourceMapFilename: "[file].map"
},
resolve: {
extensions: ["", ".js"]
},
module: {
loaders: [
{ test: /\.js$/, loader: "babel?cacheDirectory", exclude: /node_modules/ }
]
},
plugins: [
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
}
}),
new webpack.ProvidePlugin({
"fetch": "imports?this=>global!exports?global.fetch!whatwg-fetch"
}),
// new ExtractTextPlugin("styles.[hash].css"),
new HtmlWebpackPlugin({
title: "React TV",
template: "./src/index.html",
inject: "body",
hash: true
})
],
};
if (process.env.NODE_ENV === "production") {
config.plugins.push(
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin()
);
config.output.publicPath = "/react-tv/"; // because we are hosting on http://chollier.github.io/react-tv
}
module.exports = config;