Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.

This commit is contained in:
becarta
2025-05-23 12:43:00 +02:00
parent f40db0f5c9
commit a544759a3b
11127 changed files with 1647032 additions and 0 deletions

48
node_modules/flattie/package.json generated vendored Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "flattie",
"version": "1.1.1",
"repository": "lukeed/flattie",
"description": "A tiny (203B) and fast utility to flatten an object with customizable glue",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "index.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=8"
},
"scripts": {
"build": "bundt",
"bench": "node bench",
"test": "uvu -r esm test"
},
"keywords": [
"keys",
"flatten",
"object",
"nested",
"flat"
],
"devDependencies": {
"bundt": "1.1.1",
"esm": "3.2.25",
"uvu": "0.3.3"
}
}