konsav
konsav
NNuxt
Created by konsav on 7/9/2024 in #❓・help
Issue with Upgrading @nuxt/image Module in Nuxt 3
Have someone the same problem?
3 replies
NNuxt
Created by konsav on 4/22/2024 in #❓・help
middleware/redirect.global.js
where should i put this condition?
16 replies
NNuxt
Created by konsav on 4/22/2024 in #❓・help
middleware/redirect.global.js
one on console and twice on terminal
16 replies
NNuxt
Created by konsav on 4/22/2024 in #❓・help
middleware/redirect.global.js
Apart from this middleware/redirect.global.js, I have also server/ middleware/ setHeaders.js that i set some headers in my project. Maybe this is the problem?
16 replies
NNuxt
Created by konsav on 4/22/2024 in #❓・help
middleware/redirect.global.js
ok i try to delete everything and i just left the code below. The log comes twice again export default defineNuxtRouteMiddleware(async (to, from) => { console.log("Test") });
16 replies
NNuxt
Created by konsav on 4/22/2024 in #❓・help
middleware/redirect.global.js
useFetch
16 replies
NNuxt
Created by konsav on 4/22/2024 in #❓・help
middleware/redirect.global.js
export default defineNuxtRouteMiddleware(async (to, from) => { const { $getApiData } = useNuxtApp(); if (to.path.includes("/test/") || to.path.includes("/test/abc")) { const data = await $getApiData.fetchData( $../redirect/url/${encodeURIComponent( to.fullPath )} ); const response = decodeURIComponent(data); await navigateTo(response, { redirectCode: 301, external: true, }); } });
16 replies
NNuxt
Created by konsav on 3/4/2024 in #❓・help
Cache-Control: max-age=604800, public.
Any idea?
4 replies
NNuxt
Created by konsav on 3/4/2024 in #❓・help
Cache-Control: max-age=604800, public.
No description
4 replies
NNuxt
Created by konsav on 3/4/2024 in #❓・help
Cache-Control: max-age=604800, public.
I add in server/plugin/header.ts import { RenderResponse } from "nitropack"; export default defineNitroPlugin((nitroApp) => { nitroApp.hooks.hook("render:response", (res: RenderResponse, { event }) => { res.headers["X-Frame-Options"] = "DENY"; res.headers["Cache-Control"] = "no-cache"; }); }); It adds in Cache-Control: no-cache but it appears max-age yet.
4 replies
NNuxt
Created by konsav on 5/17/2023 in #❓・help
SyntaxError: Unexpected token '?', SyntaxError: Unexpected token '.'
Thanks for your answer! My problem is that I have webpack as a bundler and I can't figure out how to set the target
16 replies
NNuxt
Created by konsav on 5/17/2023 in #❓・help
SyntaxError: Unexpected token '?', SyntaxError: Unexpected token '.'
This issue is still open... if there is anything else you could suggest, I would appreciate it!
16 replies
NNuxt
Created by konsav on 5/17/2023 in #❓・help
SyntaxError: Unexpected token '?', SyntaxError: Unexpected token '.'
I can't find something. If someone else can help, let me know! Thank you anyway @warflash
16 replies
NNuxt
Created by konsav on 5/17/2023 in #❓・help
SyntaxError: Unexpected token '?', SyntaxError: Unexpected token '.'
Could you help me where can i find a resource;
16 replies
NNuxt
Created by konsav on 5/17/2023 in #❓・help
SyntaxError: Unexpected token '?', SyntaxError: Unexpected token '.'
I use webpack as builder
16 replies
NNuxt
Created by konsav on 5/17/2023 in #❓・help
SyntaxError: Unexpected token '?', SyntaxError: Unexpected token '.'
Yes you are right. Can I fix this problem somehow? I tried "@babel/preset-env" to compile but it didn't work.
16 replies
NNuxt
Created by konsav on 3/24/2023 in #❓・help
Image-edge doesn't work the format="webp"
Hello! I want to ask if I could add a BaseUrl(https://mysite.com/) in src of images?
11 replies
NNuxt
Created by konsav on 3/24/2023 in #❓・help
Image-edge doesn't work the format="webp"
ok i will try this! Thanks!
11 replies
NNuxt
Created by konsav on 3/24/2023 in #❓・help
Image-edge doesn't work the format="webp"
No description
11 replies
NNuxt
Created by konsav on 3/24/2023 in #❓・help
Image-edge doesn't work the format="webp"
I have it in nuxt.config.ts
11 replies