3,793 questions
0
votes
0
answers
33
views
Svelte Routing - Cannot read properties of undefined (reading 'before')
Not able to get routing to work without a bug. The route works if I click on the link twice, the second time, the correct page renders. The first a console output error is generated.
ERROR:
Uncaught ...
0
votes
0
answers
48
views
ESP32-C6 napt Wifi repeater having source ip translation issues
I have set up an AP/STA configuration on my ESP32-C6 using the esp-idf framework in VS Code.
The STA successfully connects to the parent network (has a correct IP and can be pinged by other devices on ...
0
votes
1
answer
82
views
how to have both side nav and bottom tabs same time in expo with filebased routing
I am building an Expo React Native app and trying to implement a Drawer Navigation with the following requirements:
Drawer Menu:
Contains a list of dynamic items (e.g., Item 1, Item 2).
The list can ...
1
vote
0
answers
32
views
Unknown logs in registered persisted query
I am trying to implement registered persisted query. when i am running a query which is not there in my PQL, with apq as enabled it is logging the query in router logs with error code “...
3
votes
1
answer
150
views
Is it possible to use the same `GoRoute` as item of `GoRouter`'s routes and the item of `ShellRoute`'s routes?
I have a GoRouter:
GoRouter(
navigatorKey: _rootNavigatorKey,
routes: [
GoRoute(
path: '/login',
),
ShellRoute(
navigatorKey: _shellNavigatorKey,
routes: [
...
1
vote
0
answers
46
views
curl --interface not going through the created utun interface on Mac OS
My TUN device setup
I have a simple program that creates the interface and logs every packet in Go (removed err handling for clarity):
package main
import (
"log"
"github.com/...
0
votes
0
answers
25
views
React useNavigate while using Outlet in react router dom
i am new to React and following a course i am getting below error, while same is working for him.. may be because i am using latest react?
useNavigate() may be used only in the context of a component....
0
votes
1
answer
53
views
Make clickable row in React Data Table call component that redirects to new page in NextJS
I'm using NextJS 15.0. I have a React Data Table Component (version 7.6.2) and I've made the rows clickable. When a user clicks a row, it calls a function called onHandleClick. Here is the code...
<...
1
vote
1
answer
775
views
Dynamic nested routes using TanStack Router
How would I set up file-based routing with tanstack router so that I could have these three different routes:
/{year} routes to YearViewComponent
/{year}/{month} routes to MonthViewComponent
/{year}/{...
0
votes
1
answer
70
views
React router dynamic
I making a application with menu dynamic. I want route dynamic too.
I use toolpad.
My example:
in configureRouters.js
const navigationItems = [
{ title: "", icon:"",element:...
1
vote
0
answers
23
views
Issues Configuring Vue Router to Handle Routes Ending with .project
I'm experiencing difficulties configuring Vue Router to handle routes with a specific pattern. My goal is to have a route like /user/work.project that should be matched and handled by a specific ...
-1
votes
1
answer
84
views
Vue - how to use store using i18n in router.ts
in my router.ts, I need to get a value from one of my store (let's call it storeA). To do that, I did like this answer https://stackoverflow.com/a/77053565/19390218 recommands. So my router looks ...
-1
votes
1
answer
67
views
React App Routing does not work after Bitbucket pipeline build
this last couple of days been losing my mind trying to fix an issue regarding routing problems after building my app via Bitbucket pipelines.
The problem started when I changed the the router of the ...
2
votes
0
answers
47
views
Seeking Guidance on Route Change Reinitialization in @solidjs/router v0.14.10
I am new to SolidJS and have implemented solidjs/router for route navigation in my starter project. I want to reinitialize certain functionalities whenever the route changes. I initially wrote the ...
0
votes
0
answers
32
views
Reveal.js does not load in a dynamic SPA view loader
I am trying to dynamic load Reveal.js inside a basic SPA router in vanilla JS, but I simply can't get Reveal.js running. I get the background, so it is recognized and the files are loaded. It just ...