mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-17 06:08:42 +00:00
2fb5a437a2
Add additional currencies and ensure Frontend/Backend currencies are synched via testing
14 lines
271 B
TypeScript
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, ".."),
|
|
},
|
|
},
|
|
});
|