Новые правки на сайте

This commit is contained in:
Web-serfer 2026-05-09 22:57:31 +05:00
parent be6ed4afaf
commit 44a7374a44
27 changed files with 859 additions and 0 deletions

12
astro.config.mjs Normal file
View file

@ -0,0 +1,12 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import node from '@astrojs/node';
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone',
}),
integrations: [tailwind()],
});