-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.cjs
90 lines (89 loc) · 1.97 KB
/
webpack.config.cjs
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
const path = require("path");
const webpack = require("webpack");
const { ModuleFederationPlugin } = webpack.container;
const { ESBuildMinifyPlugin } = require("esbuild-loader");
module.exports = {
entry: "./src/index.tsx",
mode: "production",
output: {
path: path.resolve(__dirname, `dist`),
clean: true,
filename: "[name].bundle.js",
chunkFilename: "[name].bundle.js",
},
devServer: {
static: {
directory: path.join(__dirname, "dist"),
},
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
exclude: /node_modules/,
loader: "esbuild-loader",
options: {
loader: "tsx",
target: "esnext",
},
},
],
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
},
devServer: {
static: "./dist",
},
optimization: {
minimizer: [
new ESBuildMinifyPlugin({
target: "esnext",
}),
],
},
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000,
},
plugins: [
new ModuleFederationPlugin({
name: "baseline",
filename: "remoteEntry.js",
library: { type: "window", name: "theme" },
exposes: {
"./Home": "./src/pages/Home",
"./NFT": "./src/pages/NFT",
"./NFTContract": "./src/pages/NFTContract",
"./Tag": "./src/pages/Tag",
"./artiva.config": "./artiva.config",
},
shared: {
react: {
singleton: true,
version: "0",
requiredVersion: false,
},
"react-dom": {
singleton: true,
version: "0",
requiredVersion: false,
},
"next/router": {
singleton: true,
version: "0",
requiredVersion: false,
},
"@heroicons/react": {
singleton: true,
version: "0",
requiredVersion: false,
},
},
}),
new webpack.ProvidePlugin({
process: "process/browser",
}),
],
};