kriordan37

Results 9 comments of kriordan37

i got the same issue @MinSomai do you have an example?

I also tried seperating it exactly how it is in this repo. so i created a file for the response function called `set-response-header.ts' and added to my netlify.toml ``` [[edge_functions]]...

I was able finally get a custom header added in one place but its not site wide. I commented out this section of the set-response-header.ts ``` /*if (url.searchParams.get("method") !== "set-response-header")...

i made a mistake and am now seeing the headers on responses. however it only works when ignoring `url.searchParams.get("method")`

Here is my `~/plugins/apexcharts.client.js` ``` import VueApexCharts from "vue3-apexcharts"; export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.use(VueApexCharts); }); ```

changing the heatmap variable in from computed() to ref() did load the heatmap, but i am still getting the console warning. I also need to be able to dynamically update...

Resolved... The issue was the generateData function was not available during hydration of on the client side. moving to computed with get/set and moved the generateData function inside of the...

experienced this with a fresh install and built-in auth