Skip to content

Commit 96eca2c

Browse files
committed
fix: dark mode exports
1 parent 0ef560f commit 96eca2c

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

pnpm-lock.yaml

Lines changed: 26 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/get-md-styles.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
export default function getMDStyles() {
22
return `
3-
43
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
54
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
6-
7-
body{
8-
font-family:"Inter",sans-serif;
5+
6+
7+
body {
8+
font-family: "IBM Plex Sans", sans-serif;
9+
background: white;
10+
color: black;
911
}
1012
1113
h1 {

vite.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import vue from "@vitejs/plugin-vue";
55
export default defineConfig({
66
plugins: [vue()],
77
build: {
8+
minify: "terser",
89
rollupOptions: {
910
output: {
1011
manualChunks: {

0 commit comments

Comments
 (0)