Added counter-frontend module to the repository

This commit is contained in:
2026-04-16 10:08:37 +05:30
parent 54172f6dff
commit 173864176f
19 changed files with 5376 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
})