diff options
| author | Fuwn <[email protected]> | 2024-01-31 18:39:49 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-31 18:39:49 -0800 |
| commit | 18ec9df39c2296cee2168d677602e2d69e96e6cc (patch) | |
| tree | 20d5675ce6919a1b142e23e73bd50ec61d2d4cbf | |
| parent | feat(badges): use custom dropdown (diff) | |
| download | due.moe-18ec9df39c2296cee2168d677602e2d69e96e6cc.tar.xz due.moe-18ec9df39c2296cee2168d677602e2d69e96e6cc.zip | |
ci(vercel): use vercel configuration
| -rw-r--r-- | svelte.config.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/svelte.config.js b/svelte.config.js index 111d5a6b..8b7d8de8 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -3,7 +3,7 @@ import { vitePreprocess } from '@sveltejs/kit/vite'; import autoprefixer from 'autoprefixer'; import sveltePreprocess from 'svelte-preprocess'; -/** @type {import('@sveltejs/kit').Config} */ +/** @type {import('@sveltejs/adapter-vercel').Config} */ const config = { preprocess: [ vitePreprocess(), @@ -18,7 +18,9 @@ const config = { alias: { $stores: './src/stores' } - } + }, + runtime: 'edge', + split: true }; export default config; |