We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0ffe95 commit 02eb822Copy full SHA for 02eb822
packages/start/src/config/fs-routes/index.ts
@@ -55,8 +55,8 @@ export function fsRoutes({ routers }: FsRoutesArgs): Array<PluginOption> {
55
const buildId = `${v.src}?${v.pick.map((p: any) => `pick=${p}`).join("&")}`;
56
return {
57
src: relative(root, buildId),
58
- build: isBuild ? `_$() => import(/* @vite-ignore */ '${buildId}')$_` : undefined,
59
- import: `_$() => import(/* @vite-ignore */ '${buildId}')$_`,
+ build: isBuild ? `_$() => import('${buildId}')$_` : undefined,
+ import: `_$() => import('${buildId}')$_`,
60
};
61
}
62
return v;
0 commit comments