12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 3000
|
|
}
|
|
})
|