diff options
Diffstat (limited to 'svelte.config.js')
| -rw-r--r-- | svelte.config.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..2cd0f90 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,20 @@ +import adapter from "@sveltejs/adapter-auto"; +import preprocess from "svelte-preprocess"; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + // Consult https://github.com/sveltejs/svelte-preprocess + // for more information about preprocessors + preprocess: preprocess(), + + kit: { + adapter: adapter(), + + // Override http methods in the Todo forms + methodOverride: { + allowed: ["PATCH", "DELETE"], + }, + }, +}; + +export default config; |