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
|