14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
|
import { defineConfig } from 'vite'
|
||
|
import react from '@vitejs/plugin-react'
|
||
|
|
||
|
// https://vite.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
server: {
|
||
|
host: 'localhost', // 指定 IP
|
||
|
port: 3001, // 可更改為不同的 Port
|
||
|
strictPort: true, // 如果 Port 被占用則報錯
|
||
|
open: true, // 啟動時自動打開瀏覽器
|
||
|
}
|
||
|
})
|