mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-05-28 14:07:31 +00:00
added more examples
This commit is contained in:
@@ -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" })],
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user