36223f663e
* feat: add astro/compat entrypoint for vitest * chore: add with-vitest example * chore: add vitest as optional peer dependency * chore: update lockfile * refactor: remove astro/compat, use astro/config * feat: allow arbitrary modes for `create-vite` * feat: pass vite mode and command when using `getViteConfig` * chore: remove vitest from peer deps * chore: add changeset * chore: update lockfile Co-authored-by: Nate Moore <nate@astro.build>
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
/// <reference types="vitest" />
|
|
import { getViteConfig } from 'astro/config';
|
|
|
|
export default getViteConfig({
|
|
test: {
|
|
/* for example, use global to avoid globals imports (describe, test, expect): */
|
|
// globals: true,
|
|
},
|
|
});
|