14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
base: '/requisicion-vacantes/',
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
},
|
|
preview: {
|
|
port: 4173,
|
|
},
|
|
})
|