summaryrefslogtreecommitdiff
path: root/svelte.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'svelte.config.js')
-rw-r--r--svelte.config.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/svelte.config.js b/svelte.config.js
index 91df49e..0b4c56e 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -1,16 +1,16 @@
-import { mdsvex } from 'mdsvex';
-import adapter from '@sveltejs/adapter-static';
-import mdsvexConfig from './mdsvex.config.js';
+import { mdsvex } from "mdsvex";
+import adapter from "@sveltejs/adapter-static";
+import mdsvexConfig from "./mdsvex.config.js";
/** @type {import('@sveltejs/kit').Config} */
const config = {
- kit: {
- adapter: adapter(),
- paths: { relative: false },
- inlineStyleThreshold: 100_000
- },
- preprocess: [mdsvex(mdsvexConfig)],
- extensions: ['.svelte', '.svx']
+ kit: {
+ adapter: adapter(),
+ paths: { relative: false },
+ inlineStyleThreshold: 100_000,
+ },
+ preprocess: [mdsvex(mdsvexConfig)],
+ extensions: [".svelte", ".svx"],
};
export default config;