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 799e58d commit 607af4cCopy full SHA for 607af4c
apps/tests/vite.config.ts
@@ -1,9 +1,10 @@
1
-import { solidStart } from "@solidjs/start/config";
2
import { defineConfig } from "vite";
+import { solidStart } from "../../packages/start/src/config";
3
+import { nitroV2Plugin } from "../../packages/start-nitro-v2-plugin/src";
4
5
export default defineConfig({
6
server: {
7
port: 3000,
8
},
- plugins: [solidStart()],
9
+ plugins: [solidStart(), nitroV2Plugin()],
10
});
0 commit comments