vite.config.ts 256 B

1234567891011121314
  1. import { defineConfig } from "vite"
  2. import desktopPlugin from "./vite"
  3. export default defineConfig({
  4. plugins: [desktopPlugin] as any,
  5. server: {
  6. host: "0.0.0.0",
  7. allowedHosts: true,
  8. port: 3000,
  9. },
  10. build: {
  11. target: "esnext",
  12. },
  13. })