efc2f43Trystero P2P messaging demo (text + large binary over Nostr)Jeremy Magland 1import {defineConfig} from 'vite'
2import react from '@vitejs/plugin-react'
4// https://vite.dev/config/
5export default defineConfig({
6 plugins: [react()],
17356fdUse a relative base so the build works at any mount pointowner 7 // Relative base, so the build works wherever it is mounted
8 base: './',
10 host: true
11 }
12})