From 4c364f93e624d76e6f3cecfdbbe95a12397284a4 Mon Sep 17 00:00:00 2001 From: N-Pex Date: Mon, 31 Mar 2025 17:50:47 +0200 Subject: [PATCH] Fix missing fonts (vite import path) --- vite.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/vite.config.mjs b/vite.config.mjs index 4af992f..50bb972 100644 --- a/vite.config.mjs +++ b/vite.config.mjs @@ -44,6 +44,7 @@ export default defineConfig({ extensions: [".mjs", ".js", ".ts", ".jsx", ".tsx", ".json", ".vue", ".wasm"], alias: { "@": fileURLToPath(new URL("./src", import.meta.url)), + "~@": fileURLToPath(new URL("./src", import.meta.url)), "~vuetify": fileURLToPath(new URL("./node_modules/vuetify", import.meta.url)), }, },