initial commit
This commit is contained in:
14
astro.config.mjs
Normal file
14
astro.config.mjs
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineConfig } from "astro/config";
|
||||
import react from "@astrojs/react";
|
||||
import adapter from "@nurodev/astro-bun";
|
||||
import tailwind from "@tailwindcss/vite";
|
||||
|
||||
export default defineConfig({
|
||||
base: "/",
|
||||
adapter: adapter(),
|
||||
output: "server",
|
||||
vite: {
|
||||
plugins: [tailwind()],
|
||||
},
|
||||
integrations: [react({ experimentalDisableStreaming: true })],
|
||||
});
|
||||
Reference in New Issue
Block a user