This commit is contained in:
Luke Hagar
2025-05-27 16:58:47 -05:00
parent 1b6555d7d5
commit b00c4a2da6
63 changed files with 13936 additions and 2212 deletions

34
svelte.config.js Normal file
View File

@@ -0,0 +1,34 @@
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;