1
0
Fork 1
mirror of https://github.com/hay-kot/homebox.git synced 2024-12-20 13:56:31 +00:00
homebox/frontend/test/vitest.config.ts
Hayden 2fb5a437a2
feat: add additional currencies ()
Add additional currencies and ensure Frontend/Backend currencies are synched via testing
2022-11-01 14:16:22 -08:00

14 lines
271 B
TypeScript

import path from "path";
import { defineConfig } from "vite";
export default defineConfig({
test: {
globalSetup: "./test/setup.ts",
},
resolve: {
alias: {
"@": path.resolve(__dirname, ".."),
"~~": path.resolve(__dirname, ".."),
},
},
});