12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react-swc';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: true,
|
|
allowedHosts: ['pdftools.add-ideas.de'], // ← ADD THIS
|
|
},
|
|
});
|
|
|