orbit/vite.config.ts
Jean 76722c452a Initial commit — Orbit, a modern pluggable IRCv3 web client
TypeScript + React + Vite client with zustand state. IRCv3 caps (SASL,
message-tags, echo-message, chathistory, multiline, account-registration,
webpush, …), mIRC formatting, reactions/typing/read-markers, themes, PWA +
Web Push, and runtime config.json (webchat-style) for re-pointing/re-branding
without a rebuild. See CONFIG.md.
2026-06-18 19:49:50 +00:00

9 lines
256 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// Served from https://tchatou.fr/app/ (must be an allowed websocket origin).
// https://vite.dev/config/
export default defineConfig({
base: '/app/',
plugins: [react()],
})