24 lines
498 B
JavaScript
24 lines
498 B
JavaScript
import adapter from "@sveltejs/adapter-cloudflare";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
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;
|