mirror of
https://github.com/cupcakearmy/gps-info.git
synced 2024-12-23 00:26:26 +00:00
24 lines
510 B
JavaScript
24 lines
510 B
JavaScript
import adapter from '@sveltejs/adapter-static'
|
|
import { vitePreprocess } from '@sveltejs/kit/vite'
|
|
import preprocess from 'svelte-preprocess'
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
// for more information about preprocessors
|
|
preprocess: [
|
|
vitePreprocess(),
|
|
preprocess({
|
|
postcss: true,
|
|
}),
|
|
],
|
|
|
|
kit: {
|
|
adapter: adapter({
|
|
fallback: 'index.html',
|
|
}),
|
|
},
|
|
}
|
|
|
|
export default config
|