AndersCV
AndersCV
Is there any update on this one? I spent quite a while thinking it was my own bug trying figuring out why my getCachedData function was only being triggered on...
Same issue here
The same error happens when you're switching between pages that has the `` while a promise is still resolving. Happens even when only using default layout and even with a...
@qwerzl Thanks for the response and suggetions. I thought the same but unfortunately Material Symbols provided by google is not totally identical to that of fontsource which is blocking us...
@qwerzl That was quick! Would it be possible to also specificy custom values for the font variations. Currently it's set to `opsz,wght,FILL,[email protected],100..700,0..1,-50..200` but with the possibility to add our own...
@danielroe Currently we're using the ` "@nuxtjs/google-fonts": "3.0.2",` module to request our font files with this config in our `nuxt.config.ts` ``` googleFonts: { display: 'swap', families: { 'Material Symbols Rounded:opsz,FILL@20,0..1':...
@dennisadriaans I came up with this catch-all route to proxy all my requests to external backend: ``` // server/api/[...].ts import { joinURL } from 'ufo' export default defineEventHandler(async (event) =>...
Do you have a LanguageSelector component that the crawler can use to detect your other locales and discover them correctly that way? https://i18n.nuxtjs.org/docs/guide/lang-switcher
Then I'd suggest to include them in the initial HTML and show/hide them using v-show instead of v-if. This should enable your crawler to reach those pages and solve your...
``` { "engines": { "node": "18.*" }, "devDependencies": { "@nuxt/eslint": "^0.5.0", "@types/eslint": "^9", "@types/google.maps": "^3.55.3", "@types/node": "^18.11.18", "eslint": "^9.8.0", "husky": "^9.1.4", "lint-staged": "^15.2.8" }, "dependencies": { "@flagship.io/js-sdk": "^4.0.4", "@googlemaps/js-api-loader": "^1.16.8",...