added missing config in vite.config.js

This commit is contained in:
JBB0807 2025-05-27 13:22:51 -07:00
parent 538f474ae2
commit e37c67220b

View file

@ -4,4 +4,9 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/ // https://vite.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
ase: "/ReactCalculatorJB/",
server: {
host: "0.0.0.0",
port: 5173,
},
}) })