11 lines
264 B
JavaScript
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: '/'
|
|
}); |