import path from 'path'; import {getViteConfig} from 'astro/config'; export default getViteConfig( { // @ts-ignore test: { exclude: [ "test-e2e/**", "node_modules/**", ], resolve: { alias: { '@': path.resolve(__dirname, './src') }, }, }, }, { site: 'https://caperren.com/' }, );