mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-05-28 14:07:31 +00:00
16 lines
450 B
TypeScript
16 lines
450 B
TypeScript
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" })],
|
|
};
|
|
});
|