mirror of
https://github.com/LukeHagar/Sveltey.git
synced 2025-12-06 04:21:38 +00:00
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import adapter from '@sveltejs/adapter-auto';
|
|
<<<<<<< HEAD:my-saas-template/svelte.config.js
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
=======
|
|
import { mdsvex } from 'mdsvex';
|
|
import remarkUnwrapImages from 'remark-unwrap-images';
|
|
import remarkToc from 'remark-toc';
|
|
import remarkAbbr from 'remark-abbr';
|
|
import rehypeSlug from 'rehype-slug';
|
|
|
|
/** @type {import('mdsvex').MdsvexOptions} */
|
|
const mdsvexOptions = {
|
|
extensions: ['.md'],
|
|
remarkPlugins: [remarkUnwrapImages, remarkToc, remarkAbbr],
|
|
rehypePlugins: [rehypeSlug]
|
|
};
|
|
>>>>>>> 3c705b9 (Overhaul):svelte.config.js
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
// for more information about preprocessors
|
|
extensions: ['.svelte', '.md'],
|
|
preprocess: [mdsvex(mdsvexOptions)],
|
|
|
|
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()
|
|
}
|
|
};
|
|
|
|
export default config;
|