Files
mealie/frontend/vitest.config.js
2026-04-08 16:40:59 +00:00

19 lines
376 B
JavaScript

import path from "path";
import vue from "@vitejs/plugin-vue";
export default {
plugins: [vue()],
test: {
globals: true,
environment: "jsdom",
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./app"),
"~": path.resolve(__dirname, "./app"),
"@@": path.resolve(__dirname, "."),
"~~": path.resolve(__dirname, "."),
},
},
};