Files
s3mover/frontend/vite.config.js
Paul Jenkins 20c1298a7f initial commit
2026-03-26 11:06:15 +00:00

12 lines
191 B
JavaScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
host: "0.0.0.0",
},
});