mirror of
https://github.com/linuxserver/composer.git
synced 2026-01-09 07:45:12 +08:00
12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: '0.0.0.0',
|
|
allowedHosts: true,
|
|
},
|
|
})
|