mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-09 22:45:36 -04:00
17 lines
318 B
JavaScript
17 lines
318 B
JavaScript
import path from "path";
|
|
|
|
export default {
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./app"),
|
|
"~": path.resolve(__dirname, "./app"),
|
|
"@@": path.resolve(__dirname, "."),
|
|
"~~": path.resolve(__dirname, "."),
|
|
},
|
|
},
|
|
};
|