system-copyright-react/vite.config.ts

11 lines
207 B
TypeScript
Raw Normal View History

2024-03-13 16:11:28 +08:00
import {defineConfig} from 'vite'
2024-03-11 19:13:42 +08:00
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
2024-03-13 16:11:28 +08:00
plugins: [react()],
server: {
host: '0.0.0.0'
}
2024-03-11 19:13:42 +08:00
})