Car-Management/car_management/svelte.config.js

26 lines
494 B
JavaScript
Raw Permalink Normal View History

2025-07-17 11:36:09 +00:00
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
paths: {
base: '/car_management'
},
adapter: adapter({
fallback: 'index.html',
strict: false
}),
prerender: {
entries: []
}
}
};
export default config;