15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
plugins: [react()],
|
|
resolve: {
|
|
dedupe: ['react', 'react-dom'],
|
|
},
|
|
server: {
|
|
host: true,
|
|
allowedHosts: ['xslttools.add-ideas.de'], // ← ADD THIS
|
|
},
|
|
});
|