spaces/client/vite.config.js
2025-10-31 10:46:35 -04:00

11 lines
330 B
JavaScript

import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
server: {
host: '0.0.0.0', // Binds to all network interfaces, accessible from other devices
port: 5173, // Default port, can be changed
}
})