mirror of
https://github.com/danbulant/akihabara
synced 2026-05-19 03:18:31 +00:00
20 lines
393 B
JavaScript
20 lines
393 B
JavaScript
import { windi } from "svelte-windicss-preprocess";
|
|
import adapter from '@sveltejs/adapter-auto';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: [
|
|
windi({})
|
|
],
|
|
|
|
kit: {
|
|
adapter: adapter(),
|
|
prerender: {
|
|
default: true
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|