We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c137d0 commit ccdf2f4Copy full SHA for ccdf2f4
frontend/vite-lib.config.ts
@@ -25,7 +25,7 @@ export default defineConfig(({ mode }) => ({
25
formats: ['es']
26
},
27
rollupOptions: {
28
- external: (id) => !id.startsWith("./") && !id.startsWith("../") && /* resolved internal modules */ !isAbsolute(id)
+ external: (id) => !id.startsWith("./") && !id.startsWith("../") && !id.startsWith("virtual:") && /* resolved internal modules */ !isAbsolute(id)
29
}
30
31
}));
0 commit comments