-
Notifications
You must be signed in to change notification settings - Fork 39
/
webpack.config.js
75 lines (72 loc) · 1.69 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { VueLoaderPlugin } = require("vue-loader");
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { EnvironmentPlugin, DefinePlugin } = require("webpack");
// eslint-disable-next-line @typescript-eslint/no-var-requires
const CopyWebpackPlugin = require("copy-webpack-plugin");
module.exports = (env, argv) => ({
entry: {
bundle: "./src/megamoji",
gifworker: "./src/gifworker",
},
devServer: {
static: {
directory: "dist",
},
},
output: {
path: `${__dirname}/dist`,
filename: "[name].js",
assetModuleFilename: "assets/[hash][ext][query]",
},
devtool: "source-map",
module: {
rules: [
{
test: /\.ts$/,
loader: "ts-loader",
options: {
appendTsSuffixTo: [/\.vue$/],
},
}, {
test: /\.css$/,
use: ["vue-style-loader", "css-loader"],
}, {
test: /\.vue$/,
use: "vue-loader",
}, {
test: /\.(woff|svg|png)$/,
type: "asset/resource",
}, {
test: /\.glsl$/,
loader: "webpack-glsl-minify",
options: {
preserveUniforms: true,
},
},
],
},
resolve: {
extensions: [".ts", ".js"],
},
plugins: [
new DefinePlugin({
__VUE_OPTIONS_API__: true,
__VUE_PROD_DEVTOOLS__: false,
}),
new EnvironmentPlugin({
NODE_ENV: argv.mode,
ROLLBAR_TOKEN: "",
GA4_TOKEN: "",
CODE_VERSION: "",
}),
new VueLoaderPlugin(),
new CopyWebpackPlugin({
patterns: [{
context: `${__dirname}/static`,
from: "*",
to: `${__dirname}/dist`,
}],
}),
],
});