mirror of
https://github.com/101island/lolisland.us.git
synced 2026-03-01 11:49:43 +08:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
import cloudflare from "@astrojs/cloudflare";
|
|
import react from "@astrojs/react";
|
|
import { defineConfig } from "astro/config";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
adapter: cloudflare(),
|
|
integrations: [react()],
|
|
});
|