keychain_max/apps/web/vite.config.ts
2026-09-09 19:53:50 +00:00

10 lines
184 B
TypeScript

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