mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-10 15:05:35 -04:00
19 lines
376 B
JavaScript
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, "."),
|
|
},
|
|
},
|
|
};
|