mirror of
https://github.com/Lissy93/personal-security-checklist.git
synced 2024-10-01 01:35:37 -04:00
20 lines
456 B
TypeScript
20 lines
456 B
TypeScript
import { staticAdapter } from "@builder.io/qwik-city/adapters/static/vite";
|
|
import { extendConfig } from "@builder.io/qwik-city/vite";
|
|
import baseConfig from "../../vite.config.mts";
|
|
|
|
export default extendConfig(baseConfig, () => {
|
|
return {
|
|
build: {
|
|
ssr: true,
|
|
rollupOptions: {
|
|
input: ["@qwik-city-plan"],
|
|
},
|
|
},
|
|
plugins: [
|
|
staticAdapter({
|
|
origin: "https://yoursite.qwik.dev",
|
|
}),
|
|
],
|
|
};
|
|
});
|