Second / vite.config.js
hotboxxgenn's picture
Create vite.config.js (#3)
915ba76 verified
raw
history blame
211 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: './', // important for static deployment
})