You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,6 +118,9 @@ export default defineConfig({
118
118
// When false (default), the plugin will not process any CSS assets.
119
119
// When true, all CSS assets are bundled into every exposed module.
120
120
bundleAllCSS: false, // or true
121
+
// Timeout for parsing modules in seconds.
122
+
// Defaults to 10 seconds.
123
+
moduleParseTimeout: 10,
121
124
}),
122
125
],
123
126
server: {
@@ -134,6 +137,7 @@ export default defineConfig({
134
137
135
138
The host app configuration specifies its name, the filename of its exposed remote entry remoteEntry.js, and importantly, the configuration of the remote application to load.
136
139
You can specify the place the host initialization file is injected with the **hostInitInjectLocation** option, which is described in the example code above.
140
+
The **moduleParseTimeout** option allows you to configure the maximum time to wait for module parsing during the build process.
0 commit comments