logos-messaging-frontend/vite.config.ts
2024-07-03 18:13:05 +02:00

18 lines
324 B
TypeScript

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