Files
doloro-site-v6/svelte.config.js
T
2026-04-11 19:10:35 +01:00

22 lines
424 B
JavaScript

import adapter from "@sveltejs/adapter-static";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
files: {
assets: "./static",
},
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: undefined,
precompress: false,
strict: true
})
}
};
export default config;