mirror of
https://git.meshkee.com/BaloutPastry/dashboards.git
synced 2026-08-11 22:30:59 +04:30
18 lines
349 B
TypeScript
18 lines
349 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: true,
|
|
port: 5173,
|
|
allowedHosts: [
|
|
'baloutpastry.com',
|
|
'admin.baloutpastry.com',
|
|
'customer.baloutpastry.com',
|
|
'localhost',
|
|
],
|
|
},
|
|
})
|