Add astro framework and update nodejs

This commit is contained in:
2026-03-07 11:06:07 +03:00
parent 7d488fbdf2
commit 08a160a6a1
10 changed files with 8191 additions and 6704 deletions

12
astro.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
import vue from '@astrojs/vue';
import sitemap from '@astrojs/sitemap';
export default defineConfig({
site: 'https://vakhrushev.me',
integrations: [vue(), sitemap()],
vite: {
plugins: [tailwindcss()],
},
});