base64 decode, announcement pill

This commit is contained in:
taskylizard 2023-11-05 21:16:17 +05:30
parent 34c1f13d8b
commit b80e26444d
No known key found for this signature in database
GPG key ID: 5CABA3D642DDC497
10 changed files with 159 additions and 17 deletions

View file

@ -6,6 +6,7 @@ import { commitRef, meta } from "./constants";
import { pwa } from "./pwa";
import { generateMeta } from "./hooks/meta";
import { fileURLToPath } from "url";
import { copyableCodePlugin } from "./markdown";
export default defineConfig({
title: "FMHY",
@ -57,14 +58,19 @@ export default defineConfig({
},
resolve: {
alias: [
{
find: /^.*VPSwitchAppearance\.vue$/,
replacement: fileURLToPath(
new URL("./theme/components/ThemeSwitch.vue", import.meta.url),
),
},
]
}
{
find: /^.*VPSwitchAppearance\.vue$/,
replacement: fileURLToPath(
new URL("./theme/components/ThemeSwitch.vue", import.meta.url),
),
},
],
},
},
markdown: {
config(md) {
md.use(copyableCodePlugin);
},
},
themeConfig: {
search: {