mirror of
https://gitee.com/log4j/pig-ui.git
synced 2024-12-23 13:43:51 +08:00
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
import type { UserConfig } from 'vite'
|
|
|
|
const viteConfig: UserConfig = {
|
|
port: 8080,
|
|
hostname: 'localhost',
|
|
open: true
|
|
}
|
|
|
|
export default viteConfig
|