22 lines
459 B
TypeScript
22 lines
459 B
TypeScript
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/'
|
|
},
|
|
); |