-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.config.js
More file actions
65 lines (61 loc) · 1.5 KB
/
webpack.config.js
File metadata and controls
65 lines (61 loc) · 1.5 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
61
62
63
64
65
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: "development",
performance: { hints: false },
entry: {
build: "./src/index.js",
},
plugins: [
new webpack.DefinePlugin({
DEVELOPMENT: !isProd,
}),
new CopyWebpackPlugin({
patterns: [{ from: "src/assets", to: "assets" }],
}),
new HtmlWebpackPlugin({
title: "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: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
compact: false,
presets: [["@babel/preset-env"]],
plugins: [["@babel/transform-runtime"]],
},
},
},
],
},
};
if (!isProd) {
config.devtool = "source-map";
}
return config;
};