2024-04-30 11:17:06 +01:00
|
|
|
import adapter from "@sveltejs/adapter-static";
|
|
|
|
import { vitePreprocess } from "@sveltejs/kit/vite";
|
2023-06-12 19:02:49 +01:00
|
|
|
|
2023-07-12 00:50:01 +01:00
|
|
|
const config = {
|
2024-04-30 11:17:06 +01:00
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
|
|
adapter: adapter({
|
|
|
|
pages: "build",
|
|
|
|
assets: "build",
|
|
|
|
precompress: true,
|
2024-04-30 11:18:21 +01:00
|
|
|
strict: true,
|
|
|
|
}),
|
2024-06-18 23:42:05 +01:00
|
|
|
paths: {
|
|
|
|
relative: false,
|
|
|
|
},
|
2024-04-30 11:18:21 +01:00
|
|
|
},
|
2023-06-12 19:02:49 +01:00
|
|
|
};
|
2023-07-12 00:50:01 +01:00
|
|
|
|
2023-08-24 20:24:28 +01:00
|
|
|
export default config;
|