Advertisement
SpiderLordCoder1st

Untitled

May 17th, 2024
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /** @type {import("@sveltejs/kit").Config} */
  2. const config = {
  3. // Consult https://kit.svelte.dev/docs/integrations#preprocessors
  4. // for more information about preprocessors
  5. preprocess: vitePreprocess(),
  6.  
  7. kit: {
  8. adapter: adapter({
  9. pages: "dist",
  10. assets: "dist"
  11. // out: "build"
  12. })
  13. },
  14. prerender: {
  15. default: true // Ensure that the root page is prerendered by default
  16. }
  17. }
  18.  
  19. export default config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement