-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathrsbuild.config.ts
56 lines (55 loc) · 1.39 KB
/
rsbuild.config.ts
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
import { defineConfig } from "@rsbuild/core";
import { pluginVue } from "@rsbuild/plugin-vue";
// import { pluginEslint } from '@rsbuild/plugin-eslint';
import path from "node:path";
import { dependencies } from "./package.json";
import { ModuleFederationPlugin } from "@module-federation/enhanced/rspack";
export default defineConfig({
source: {
entry: {
index: "./src/main.js",
},
},
server: {
port: 3000,
},
output: {
assetPrefix: '/',
filenameHash: true,
},
tools: {
rspack: (config, { appendPlugins }) => {
// Will work in dev only if set to "/"
config.resolve ||= {};
config.resolve.alias ||= {};
config.output ||= {};
// public
config.resolve.alias["@"] = path.resolve(__dirname, "src");
appendPlugins([
new ModuleFederationPlugin({
name: `ASSET_HOST`,
filename: `ASSET_HOST__remoteEntry.js`,
remotes: {
"@remote": "ASSET_REMOTE@http://localhost:3001/remoteEntry.js",
},
shared: {
vue: {
singleton: true,
requiredVersion: dependencies.vue,
},
vuex: {
singleton: true,
requiredVersion: dependencies.vuex,
},
},
}),
]);
},
},
plugins: [pluginVue({
splitChunks: {
vue: false,
router: false
}
})],
});