2
0

style: apply Biome config and normalize quotes

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2026-01-27 16:25:02 +08:00
parent 2576a296f1
commit 5f37fc66b0
24 changed files with 407 additions and 261 deletions

View File

@@ -1,12 +1,12 @@
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwindcss from '@tailwindcss/vite';
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
integrations: [react()],
vite: { plugins: [tailwindcss()] },
server: {
host: '0.0.0.0',
host: "0.0.0.0",
port: 5000,
allowedHosts: true,
},