Files
mealie/frontend/vitest.config.js

19 lines
376 B
JavaScript
Raw Normal View History

import path from "path";
2026-04-08 16:40:59 +00:00
import vue from "@vitejs/plugin-vue";
export default {
2026-04-08 16:40:59 +00:00
plugins: [vue()],
test: {
globals: true,
environment: "jsdom",
},
resolve: {
alias: {
2026-04-08 17:25:41 +02:00
"@": path.resolve(__dirname, "./app"),
"~": path.resolve(__dirname, "./app"),
"@@": path.resolve(__dirname, "."),
"~~": path.resolve(__dirname, "."),
},
},
};