Files
dupe/client/vite.config.js
2025-10-21 18:43:21 +03:00

13 lines
308 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
export default defineConfig({
plugins: [svelte()],
server: {
host: '0.0.0.0', // dış erişim
port: 5173,
strictPort: true,
watch: { usePolling: true } // bazen hot reload için gerekir
}
});