added more examples

This commit is contained in:
Andras Bacsai
2026-04-10 12:40:08 +02:00
parent b0d6e95f1b
commit 229446e59c
61 changed files with 20721 additions and 0 deletions
@@ -0,0 +1,15 @@
import { nodeServerAdapter } from "@builder.io/qwik-city/adapters/node-server/vite";
import { extendConfig } from "@builder.io/qwik-city/vite";
import baseConfig from "../../vite.config";
export default extendConfig(baseConfig, () => {
return {
build: {
ssr: true,
rollupOptions: {
input: ["src/entry.node-server.tsx", "@qwik-city-plan"],
},
},
plugins: [nodeServerAdapter({ name: "node-server" })],
};
});