astro-ecommerce/astro.config.mjs
2025-01-16 06:13:29 +01:00

11 lines
264 B
JavaScript

import { defineConfig } from 'astro/config';
// https://astro.build/config
import react from "@astrojs/react";
// https://astro.build/config
export default defineConfig({
integrations: [react()],
site: 'https://creativetimofficial.github.io',
base: '/'
});