-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwebpack.config.js
60 lines (57 loc) · 1.54 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
const webpack = require("webpack");
const path = require("path");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = (env) => {
const isProd = env && env.prod;
const config = {
mode: isProd ? "production" : "development",
performance: { hints: false },
entry: ["babel-polyfill", "./src/index.js"],
plugins: [
new webpack.DefinePlugin({
DEVELOPMENT: !isProd,
}),
new CopyWebpackPlugin({
patterns: [{ from: "src/assets", to: "assets" }],
}),
new HtmlWebpackPlugin({
title: isProd ? "Production" : "Development",
meta: {
viewport:
"width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1.0, user-scalable=no",
},
}),
],
output: {
filename: "[name].js",
path: path.resolve(__dirname, "dist"),
},
module: {
rules: [
{
test: /\.(glsl|vs|fs|vert|frag)$/,
use: ["raw-loader", "glslify-loader"],
},
{
test: /\.js$/,
use: {
loader: "babel-loader",
options: {
compact: false,
presets: [["@babel/preset-env"]],
plugins: [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-syntax-nullish-coalescing-operator",
],
},
},
},
],
},
};
if (!isProd) {
config.devtool = "#source-map";
}
return config;
};