Implemented a Material You (Material 3) client for the bonch-open-api. - Added API client with axios - Added Zustand store for API config and user data - Added Login and Profile pages - Set up routing with react-router-dom - Added global styles with Material 3 tokens Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|