-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.prod.js
75 lines (74 loc) · 1.65 KB
/
webpack.config.prod.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
const path = require("path");
const WebpackBar = require("webpackbar");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const webpack = require("webpack");
const TerserPlugin = require("terser-webpack-plugin");
module.exports = {
mode: "production",
devtool: false,
entry: {
main: "./src/main.ts",
},
devServer: {
static: {
directory: path.join(__dirname, "public")
},
port: 8081
},
output: {
library: {
type: "var",
name: "Slavir"
},
clean: true,
globalObject: "this",
path: path.resolve(__dirname, "public"),
filename: "[name].min.js"
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: [/node_modules/],
loader: "ts-loader",
options: {
configFile: path.resolve(__dirname, "tsconfig.json"),
},
},
{
test: [/\.vert$/, /\.frag$/],
type: "asset/source",
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.(png|jpe?g|gif|xml|svg)$/i,
type: "asset/resource",
},
{
test: /\.(mp3|wav|mpe?g|ogg)$/i,
type: "asset/resource",
}
],
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()]
},
resolve: {
extensions: [".ts", ".js"],
},
plugins: [
new WebpackBar(),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "src", "index.html"),
favicon: path.resolve(__dirname, "src", "assets", "favicon.png")
}),
new webpack.DefinePlugin({
CANVAS_RENDERER: JSON.stringify(true),
WEBGL_RENDERER: JSON.stringify(true)
}),
],
};