2
0
Files
website/svelte.config.js
2026-01-23 11:07:16 +08:00

17 lines
301 B
JavaScript

import adapter from "@sveltejs/adapter-static";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
pages: "build",
assets: "build",
fallback: undefined,
precompress: true,
strict: true,
}),
},
};
export default config;