Read-it-later social network

use sveltekit netlify adapter

+2 -5
bun.lockb

This is a binary file and will not be displayed.

+1 -1
package.json
··· 13 13 "db:studio": "drizzle-kit studio" 14 14 }, 15 15 "devDependencies": { 16 - "@sveltejs/adapter-auto": "^6.1.0", 16 + "@sveltejs/adapter-netlify": "^5.2.3", 17 17 "@sveltejs/kit": "^2.42.1", 18 18 "@sveltejs/vite-plugin-svelte": "^6.2.0", 19 19 "@tailwindcss/typography": "^0.5.16",
+1 -4
svelte.config.js
··· 1 - import adapter from '@sveltejs/adapter-auto'; 1 + import adapter from '@sveltejs/adapter-netlify'; 2 2 import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 3 4 4 /** @type {import('@sveltejs/kit').Config} */ ··· 8 8 preprocess: vitePreprocess(), 9 9 10 10 kit: { 11 - // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. 12 - // If your environment is not supported, or you settled on a specific environment, switch out the adapter. 13 - // See https://svelte.dev/docs/kit/adapters for more information about adapters. 14 11 adapter: adapter() 15 12 } 16 13 };