qualiteer/vite.config.js

15 lines
245 B
JavaScript
Raw Normal View History

2022-07-06 21:24:54 +00:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default () => {
2022-07-12 22:07:44 +00:00
return defineConfig({
plugins: [react()],
server: {
host: "0.0.0.0",
hmr: {
port: 443,
},
},
});
};