personal-page/astro.config.mjs
2023-08-20 12:36:37 -04:00

11 lines
215 B
JavaScript

import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
// https://astro.build/config
export default defineConfig({
integrations: [react()],
experimental: {
assets: true,
},
});