External links
All checks were successful
Deploy / build-and-publish (push) Successful in 1m22s
Deploy / deploy (push) Successful in 14s

This commit is contained in:
2024-10-05 00:34:31 +03:00
parent b9f3b389a1
commit 8f819f3ab1
7 changed files with 97 additions and 13 deletions

View File

@@ -1,7 +1,8 @@
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import {mdsvex} from "mdsvex";
import adapter from '@sveltejs/adapter-node'
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
import {mdsvex} from "mdsvex"
import remarkTypograf from "@mavrin/remark-typograf"
import externalLinks from "./rehype/external-links.js"
/** @type {import('@sveltejs/kit').Config} */
const config = {
@@ -12,7 +13,10 @@ const config = {
remarkPlugins: [
remarkTypograf,
],
}),
rehypePlugins: [
externalLinks
]
})
],
kit: {
adapter: adapter()