|
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import svgr from 'vite-plugin-svgr'
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), svgr()],
|
|
server: {
|
|
host: true,
|
|
allowedHosts: ['dev.msf.enode', 'demo-msf.kis-npo.ru'],
|
|
}
|
|
}); |