You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SGPT/vite.config.ts

11 lines
171 B

2 years ago
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
2 years ago
plugins: [],
2 years ago
server: {
port: 5000,
host: "0.0.0.0",
},
});