@@ -16,6 +16,7 @@
|
||||
"@eslint/compat": "^1.4.0",
|
||||
"@eslint/js": "^9.39.1",
|
||||
"@sveltejs/adapter-auto": "^7.0.0",
|
||||
"@sveltejs/adapter-cloudflare": "^7.2.6",
|
||||
"@sveltejs/kit": "^2.49.1",
|
||||
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
||||
"@tailwindcss/typography": "^0.5.19",
|
||||
|
||||
841
pnpm-lock.yaml
generated
841
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,13 +1,23 @@
|
||||
import adapter from '@sveltejs/adapter-auto';
|
||||
import adapter from "@sveltejs/adapter-cloudflare";
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
kit: {
|
||||
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
|
||||
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
|
||||
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
|
||||
adapter: adapter()
|
||||
}
|
||||
kit: {
|
||||
adapter: adapter({
|
||||
// See below for an explanation of these options
|
||||
config: undefined,
|
||||
platformProxy: {
|
||||
configPath: undefined,
|
||||
environment: undefined,
|
||||
persist: undefined,
|
||||
},
|
||||
fallback: "plaintext",
|
||||
routes: {
|
||||
include: ["/*"],
|
||||
exclude: ["<all>"],
|
||||
},
|
||||
}),
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
||||
Reference in New Issue
Block a user