1
0
mirror of https://github.com/midou36o/midou36o.github.io synced 2025-06-04 00:41:01 +05:30

Svelte-add

This commit is contained in:
2023-01-19 18:05:09 +01:00
parent 40979faa8e
commit 47a9994c87
27 changed files with 514 additions and 0 deletions

15
svelte.config.js Normal file

@@ -0,0 +1,15 @@
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
adapter: adapter()
}
};
export default config;