mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-22 23:48:26 -04:00
* Update pnpm version
* Fix autoformat
* Improve autoformat msg
* Attempt to fix autoformat 2
* Fix autoformat
* Ignore deleted files in auto-format
* Fix diff filter
* Autoformat whole codebase
* Improve error message for autoformat CI
* Test autoformat CI
* Revert "Test autoformat CI"
This reverts commit 0bf2f46d1a.
7 lines
204 B
TypeScript
7 lines
204 B
TypeScript
import { RouteObject } from 'react-router';
|
|
|
|
export const debugRoutes = [
|
|
{ path: 'cloud', lazy: () => import('./cloud') },
|
|
{ path: 'actors', lazy: () => import('./actors') }
|
|
] satisfies RouteObject[];
|