feat: [wip] settings page

This commit is contained in:
Shibo Lyu 2024-10-01 03:11:05 +08:00
parent 2827a1bf1f
commit e05c89d04f
7 changed files with 9 additions and 3 deletions

View file

@ -1,12 +1,13 @@
import adapter from '@sveltejs/adapter-auto';
import zAdapter from '@zeabur/svelte-adapter';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import { preprocessMeltUI, sequence } from '@melt-ui/pp';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
preprocess: sequence([vitePreprocess(), preprocessMeltUI()]),
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.