-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
132 lines (131 loc) · 3.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
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
123
124
125
126
127
128
129
130
131
132
const IS_PRODUCTION = process.env.NODE_ENV === "production";
const path = require("path");
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const HtmlWebpackHarddiskPlugin = require("html-webpack-harddisk-plugin");
const CleanWebpackPlugin = require("clean-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
entry: "./src/application/index.js",
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: [/node_modules/, path.join(__dirname, "src/application/assets/")],
enforce: "pre",
loader: "eslint-loader",
options: {
failOnWarning: false,
failOnError: true
}
},
{
test: /\.(js|jsx)?$/,
exclude: /node_modules/,
loader: "babel-loader"
},
{
test: /\.scss$/,
exclude: /node_modules/,
use: IS_PRODUCTION
? ExtractTextPlugin.extract({
fallback: "style-loader",
use: [
{
loader: "css-loader",
options: {
minimize: true
}
},
"postcss-loader",
"sass-loader",
{
loader: "sass-resources-loader",
options: {
resources: path.join(__dirname, "src/styles/resources/index.scss")
}
}
]
})
: [
"style-loader",
{
loader: "css-loader",
options: {
sourceMap: true,
importLoaders: 2
}
},
{
loader: "postcss-loader",
options: {
sourceMap: true
}
},
{
loader: "sass-loader",
options: {
sourceMap: true,
outputStyle: "expanded"
}
},
{
loader: "sass-resources-loader",
options: {
resources: path.join(__dirname, "src/styles/resources/index.scss")
}
}
]
},
{
test: /\.(png|jpg|gif)$/,
exclude: /node_modules/,
loader: "url-loader",
options: {
name: "[name].[ext]",
limit: 10000,
publicPath: IS_PRODUCTION ? "" : "/public",
outputPath: "/assets/img/",
useRelativePath: IS_PRODUCTION
}
}
]
},
output: {
path: path.join(__dirname, "/public"),
filename: "index.js"
},
stats: !IS_PRODUCTION,
devServer: {
port: 3000,
historyApiFallback: true
// host: '0.0.0.0',
// disableHostCheck: true,
// headers: { 'Access-Control-Allow-Origin': '*' }
},
plugins: [
new webpack.DefinePlugin({
DEFINE_IS_PRODUCTION: JSON.stringify(IS_PRODUCTION)
}),
new HtmlWebpackPlugin({
IS_PRODUCTION,
template: path.resolve(__dirname, "src/index.html.ejs"),
inject: false,
alwaysWriteToDisk: IS_PRODUCTION
}),
IS_PRODUCTION
? new HtmlWebpackHarddiskPlugin({
outputPath: path.resolve(__dirname, "public")
})
: undefined,
new CopyWebpackPlugin([{ from: "src/assets", to: "assets" }]),
IS_PRODUCTION ? new ExtractTextPlugin("assets/css/main.css") : undefined,
IS_PRODUCTION ? new CleanWebpackPlugin(["public"]) : undefined
].filter(plugin => plugin),
resolve: {
modules: [path.join(__dirname, "src/application/"), path.join(__dirname, "node_modules")],
extensions: [".js"]
},
devtool: IS_PRODUCTION ? false : "eval-cheap-module-source-map"
};