import path from 'path'; import {getViteConfig} from 'astro/config'; export default getViteConfig( { test: { exclude: [ "test-e2e/**", "node_modules/**", ], resolve: { alias: { '@': path.resolve(__dirname, './src') }, }, /* for example, use global to avoid globals imports (describe, test, expect): */ // globals: true, }, }, { site: 'https://caperren.com/' }, );