-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvelte.config.js
47 lines (41 loc) · 1.18 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
44
45
46
47
import adapter from '@sveltejs/adapter-auto'
import { mdsvex } from 'mdsvex'
import preprocess from 'svelte-preprocess'
import rehypeAutolinkHeadings from 'rehype-autolink-headings'
import rehypeSlug from 'rehype-slug'
/** @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'],
preprocess: [
preprocess({
scss: {
// Ensures Sass variables are always available inside component <style> blocks as vars.$variableDefinedInFile
prependData: `@use 'src/lib/assets/scss/vars';`
},
}),
mdsvex({
// The default mdsvex extension is .svx; this overrides that.
extensions: ['.md'],
// Adds IDs to headings, and anchor links to those IDs. Note: must stay in this order to work.
rehypePlugins: [
rehypeSlug,
rehypeAutolinkHeadings,
],
}),
],
kit: {
adapter: adapter(),
},
/*csp: {
mode: 'enforce',
directives: {
defaultSrc: ["'self'"],
styleSrc: ["'self'", 'fonts.googleapis.com'],
scriptSrc: ["'self'"],
objectSrc: ["'none'"],
baseUri: ["'none'"]
}
}*/
};
export default config;