Files
Agent-n8n/web_frontend/exhibition-demo/vite.config.ts

20 lines
318 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': '/src',
},
},
server: {
port: 4173,
host: true,
},
preview: {
port: 4173,
host: true,
},
})