mirror of
https://github.com/vee1e/itoa.git
synced 2026-09-01 11:08:20 +00:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: '/',
|
|
})
|