mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 20:37:21 +00:00
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import react from "@astrojs/react";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: "hybrid",
|
|
integrations: [react()]
|
|
});
|