alexcali
What causes a global middleware to stop working?
I've noticed my global middleware stops working after it's executed several times. I know I'm being too vague atm. Are there any common reasons for middleWares to stop working?
I am getting this error which I think might be related:
I believe this has always happened, but with Nuxt 3.11 it's more obvious.
1 replies
TypeError: Cannot read properties of undefined (reading 'appMiddleware')
Has anyone else experienced this error since upgrading to v3.11.x?
I believe this is happening when I switch between back and forth pages, especially those ones marked as
external: true
when navigating using navigateTo
.
If so, what have you done to fix it?1 replies
Access environment variables from `store` or `root` folder
I have a
.ts
file where I would like to read values from my environment variables but anytime I do so, I get undefined. How can I go around this and access env variables from anywhere in my project?5 replies
Trouble using Highcharts' bubble charts
I installed nuxt-highcharts and I was able to get a simple line chart working, but I am having some trouble with bubble charts, speciifically packedbubble (https://www.highcharts.com/docs/chart-and-series-types/packed-bubble).
This is the error that I am getting:
I believe all I need to do is updating the
nuxt.config.ts
accordingly. I have tried a few things following this (https://github.com/richardeschloss/nuxt-highcharts) but nothing. Here's my latest iteration:
1 replies