NAPPDesafio/spa/vite.config.ts
2024-07-21 00:15:14 -03:00

13 lines
232 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
host: '0.0.0.0',
open: true,
}
})