simple-sudoku/vite.config.js
Eduard Duran 5c07425d1d Initial commit: Sudoku SPA
React + Vite sudoku app with 5 difficulty levels, dark mode,
celebration effects, localStorage save, and deploy script.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 23:59:52 +01:00

8 lines
153 B
JavaScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: '/sudoku/',
})