mirror of
https://github.com/liyunze-coding/RythonDev.git
synced 2026-09-22 07:44:26 +00:00
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
import { defineConfig } from "astro/config";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
import svelte from "@astrojs/svelte";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), svelte()],
|
|
server: {
|
|
port: 8008,
|
|
hostname: "RythonDev",
|
|
},
|
|
site: "https://rython.dev",
|
|
base: "/",
|
|
});
|