15 lines
266 B
TypeScript
15 lines
266 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
host: '127.0.0.1',
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
},
|
|
});
|