feat: nextcloud sync

This commit is contained in:
2026-01-20 18:39:07 +01:00
parent 16c277c50c
commit ff2a2fee48
18 changed files with 647 additions and 80 deletions
+2 -10
View File
@@ -1,18 +1,10 @@
import adapter from '@sveltejs/adapter-static';
import adapter from '@sveltejs/adapter-node';
import { sveltePreprocess } from 'svelte-preprocess';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: undefined,
precompress: false,
strict: true
})
adapter: adapter()
},
preprocess: [vitePreprocess(), sveltePreprocess({})]
};