We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6de2ae4 commit b97f7eeCopy full SHA for b97f7ee
vite.config.ts
@@ -34,7 +34,7 @@ export default defineConfig({
34
target: "node18",
35
modulePreload: false,
36
rollupOptions: {
37
- external: (id: string) => id.startsWith("node:"),
+ external: (id: string) => id.startsWith("node:") || id.startsWith("ppef"),
38
},
39
}
40
: {
@@ -60,6 +60,7 @@ export default defineConfig({
60
// Externalize Node.js modules for browser compatibility
61
external: (id: string) =>
62
id.startsWith("node:") ||
63
+ id.startsWith("ppef") ||
64
id.includes("/experiments/evaluation/fixtures/") ||
65
id.includes("/experiments/evaluation/loaders/"),
66
0 commit comments