Vid2SS / vite.config.js
Shinhati2023's picture
Create vite.config.js
ccff4d9 verified
raw
history blame contribute delete
183 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 7860, // Local dev port
}
})