We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a4679 commit 1d92be5Copy full SHA for 1d92be5
src/runtime/internal/api.ts
@@ -8,6 +8,8 @@ async function fetchContent<T>(
8
options: NonNullable<Parameters<typeof $fetch>[1]>,
9
): Promise<T> {
10
const headers = event ? getRequestHeaders(event) : {}
11
+ headers['accept-encoding'] = undefined // prevent unsupported enconding issue (https://github.com/nuxt/content/pull/3701)
12
+
13
const url = `/__nuxt_content/${collection}/${path}`
14
const fetchOptions = {
15
...options,
0 commit comments