A photo manager for VRChat.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 6cf544fbbf957366c511eada87a7ac143b98892c 20 lines 529 B view raw
1import { defineConfig } from "vite"; 2import solid from "vite-plugin-solid"; 3 4// https://vitejs.dev/config/ 5export default defineConfig(async () => ({ 6 plugins: [solid()], 7 8 // Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build` 9 // 10 // 1. prevent vite from obscuring rust errors 11 clearScreen: false, 12 // 2. tauri expects a fixed port, fail if that port is not available 13 server: { 14 port: 1420, 15 strictPort: true, 16 watch: { 17 ignored: [ 'src-tauri/**' ] 18 } 19 } 20}));