mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 15:07:54 -04:00
* Fix `pnpm format` command failure - Update prettier and plugins dependencies - Add auto-install-peers to .npmrc - Fix formating of previously failing files - Some basic security mitigations (`pnpm audit --fix`) * setup-system.sh: Don't do a full system update on ArchLinux * Revert "Some basic security mitigations (`pnpm audit --fix`)"
9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
import { RouteObject } from 'react-router';
|
|
|
|
export default [
|
|
{ path: 'about', lazy: () => import('./about') },
|
|
{ path: 'changelog', lazy: () => import('./changelog') },
|
|
{ path: 'dependencies', lazy: () => import('./dependencies') },
|
|
{ path: 'support', lazy: () => import('./support') }
|
|
] satisfies RouteObject[];
|