stat_ui / svelte.config.js
Hanzo03's picture
static error
2ea068b
raw
history blame
262 Bytes
import adapter from '@sveltejs/adapter-static';
export default {
kit: {
adapter: adapter({
fallback: 'index.html', // Enables SPA fallback
strict: false
}),
prerender: {
entries: [] // disables automatic prerendering
}
}
};