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.
9 lines
256 B
TypeScript
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()],
|
|
})
|