-
Notifications
You must be signed in to change notification settings - Fork 19
/
svelte.config.js
43 lines (38 loc) · 1.23 KB
/
svelte.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import 'dotenv/config';
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import { mdsvex } from 'mdsvex';
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
import rehypeSlug from 'rehype-slug';
import rehypeLinks from 'rehype-external-links';
import rehypeImageSize from 'rehype-img-size';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Ensures both .svelte and .md files are treated as components (can be imported and used anywhere, or used as pages)
extensions: ['.svelte', '.md'],
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
vitePreprocess({
postcss: true,
}),
mdsvex({
// The default mdsvex extension is .svx; this overrides that.
extensions: ['.md'],
layout: '/src/lib/components/blog/article-layout/article-layout.svelte',
rehypePlugins: [
rehypeSlug,
rehypeAutolinkHeadings,
[rehypeLinks, { target: '_blank' }],
[rehypeImageSize, { dir: 'static' }],
],
}),
],
kit: {
adapter: adapter(),
prerender: {
origin: process.env.PUBLIC_BASE_URL,
},
},
};
export default config;