Files
appcakes-builds/vite.config.ts
T
2026-05-20 09:48:34 +00:00

12 lines
214 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 8100,
allowedHosts: true,
},
});