Files
mealie/frontend/vitest.config.js

19 lines
376 B
JavaScript
Raw Normal View History

import path from "path";
import vue from "@vitejs/plugin-vue";
export default {
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, "."),
},
},
};