15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
import { extendConfig } from "@builder.io/qwik-city/vite";
|
|
import baseConfig from "../../vite.config";
|
|
|
|
export default extendConfig(baseConfig, () => {
|
|
return {
|
|
build: {
|
|
ssr: true,
|
|
rollupOptions: {
|
|
input: ["@qwik-city-plan"],
|
|
},
|
|
},
|
|
plugins: [
|
|
],
|
|
};
|
|
});
|