tauri.js 174 B

123456
  1. export default function ({ route, redirect }) {
  2. // redirect tauri's no-server default URL to /
  3. if (route.path.startsWith('/text/html,')) {
  4. redirect('301', '/')
  5. }
  6. }