chore: update dependencies and add new mobile-first features page with interactive demos

This commit is contained in:
2025-10-22 17:10:31 +02:00
parent 205c8fd0d9
commit 886e7557df
12 changed files with 2243 additions and 766 deletions

View File

@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'node:path'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})