20 lines
349 B
TypeScript
20 lines
349 B
TypeScript
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/",
|
|
},
|
|
);
|