Create network filters route

This commit is contained in:
2024-01-03 14:50:59 +01:00
parent 706bce0fd8
commit 22f5acd0ff
11 changed files with 180 additions and 31 deletions

View File

@ -0,0 +1,5 @@
export function isDebug(): boolean {
return (
!import.meta.env.NODE_ENV || import.meta.env.NODE_ENV === "development"
);
}