forked from mirrors/homebox
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, ".."),
|
|
},
|
|
},
|
|
});
|