import adapter from '@sveltejs/adapter-auto' import preprocess from 'svelte-preprocess' // @type {import('@sveltejs/kit').Config} const config = { preprocess: preprocess(), kit: { adapter: adapter({ out: 'build', //precompress: false, }), vite: { envPrefix: 'AO_', // Prefix for environment variables server: { fs: { allow: ['static'], // Allows static assets such as SVG files to be served from the static/ folder }, }, }, }, } export default config