mirror of
https://github.com/liyunze-coding/RythonDev.git
synced 2026-09-22 15:53:57 +00:00
28 lines
No EOL
487 B
JavaScript
28 lines
No EOL
487 B
JavaScript
import { defineConfig, passthroughImageService } from "astro/config";
|
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
import svelte from "@astrojs/svelte";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [mdx(), svelte()],
|
|
|
|
server: {
|
|
port: 8008,
|
|
hostname: "RythonDev",
|
|
},
|
|
|
|
site: "https://rython.dev",
|
|
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
|
|
image: {
|
|
service: passthroughImageService(),
|
|
},
|
|
|
|
}); |