frontend: basic skeleton

This commit is contained in:
2025-02-15 12:15:41 -08:00
parent 4f94ca0b52
commit 852bb7a1a4
13 changed files with 145 additions and 153 deletions

View File

@@ -1,10 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), tailwindcss()],
server: {
// For development only: proxy /api to backend running on separate port.
proxy: {
'/api': {
target: 'http://localhost:3000',