Rewritten in Astro (i had better separate this commit into smaller ones)

This commit is contained in:
DarkCat09 2023-05-05 14:01:09 +04:00
commit be964a8c49
32 changed files with 10954 additions and 0 deletions

8
astro.config.mjs Normal file
View file

@ -0,0 +1,8 @@
import { defineConfig } from 'astro/config';
import compress from "astro-compress";
// https://astro.build/config
export default defineConfig({
integrations: [compress()]
});