[READ-ONLY] Mirror of https://github.com/danielroe/roe.dev. This is the code and content for my personal website, built in Nuxt.
roe.dev
1import { defineVitestProject } from '@nuxt/test-utils/config'
2import { defineConfig } from 'vitest/config'
3
4export default defineConfig({
5 test: {
6 projects: [
7 'test/unit',
8 defineVitestProject({
9 test: {
10 name: 'nuxt',
11 dir: 'test/nuxt',
12 environmentOptions: {
13 nuxt: {
14 overrides: {
15 plausible: false,
16 ogImage: { enabled: false },
17 },
18 },
19 },
20 },
21 }),
22 ],
23 },
24})