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