9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 8080,
|
|
host: true, // Listen on all local IPs
|
|
},
|
|
});
|