owlboard-svelte/svelte.config.js

21 lines
409 B
JavaScript
Raw Normal View History

2024-07-12 19:53:45 +01:00
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
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
};
export default config;