18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
|
|
import { defineConfig } from "vite";
|
||
|
|
import react from "@vitejs/plugin-react-swc";
|
||
|
|
import gzipPlugin from "rollup-plugin-gzip";
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
server: {
|
||
|
|
host: "0.0.0.0",
|
||
|
|
port: 9797,
|
||
|
|
},
|
||
|
|
plugins: [react()],
|
||
|
|
build: {
|
||
|
|
rollupOptions: {
|
||
|
|
plugins: [gzipPlugin()],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|