mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-06-27 14:25:46 +00:00
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
import path from "path";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(process.cwd(), "apps/web"),
|
|
},
|
|
},
|
|
test: {
|
|
exclude: ["**/node_modules/**", "**/dist/**", "**/e2e/**"],
|
|
},
|
|
});
|