Spaces:
Running
Running
File size: 309 Bytes
0d72569 844d67f b4f19d0 0d72569 7159397 0d72569 b4f19d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import adapter from "@sveltejs/adapter-static";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
pages: "dist",
assets: "dist",
precompress: false,
strict: false,
}),
prerender: { entries: ["*"] },
},
};
export default config;
|