import adapter from '@sveltejs/adapter-static'; const basePath = process.env.BASE_PATH || ''; /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { adapter: adapter({ pages: 'build', assets: 'build', fallback: 'index.html', precompress: false, strict: false }), paths: { base: basePath, relative: true } } }; export default config;