Files
startover/apps/web/vitest.config.ts
T
Johngreen 7f59b94dcf Rename project from Re:Link to Startover
Rebrand repository from "Re:Link" to "Startover" across the codebase. Updates include package names and scopes (@relink/* -> @startover/*), import paths, Next.js transpile settings, vitest name, UI text and docs, Dockerfile and CI/workflow names, deploy scripts and repo paths, and example/production env values. Also add auth-related env vars, an apps/web .env symlink, and small formatting/typing cleanups in several TSX/TS files and tests to accommodate the rename.
2026-03-08 20:22:08 +09:00

19 lines
352 B
TypeScript

import { defineConfig } from 'vitest/config';
import { resolve } from 'path';
export default defineConfig({
test: {
name: '@startover/web',
globals: true,
environment: 'node',
testTimeout: 30000,
hookTimeout: 30000,
fileParallelism: false,
},
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
},
},
});