packages/docs/src/routes/api/qwik-city-vite-netlify-edge/index.mdx
export declare function netlifyEdgeAdapter(
opts?: NetlifyEdgeAdapterOptions,
): any;
Parameter
</th><th>Type
</th><th>Description
</th></tr></thead> <tbody><tr><td>opts
</td><td> </td><td>(Optional)
</td></tr> </tbody></table>Returns:
any
<h2 id="netlifyedgeadapteroptions">NetlifyEdgeAdapterOptions</h2>export interface NetlifyEdgeAdapterOptions extends ServerAdapterOptions
Extends: ServerAdapterOptions
<table><thead><tr><th>Property
</th><th>Modifiers
</th><th>Type
</th><th>Description
</th></tr></thead> <tbody><tr><td> </td><td> </td><td>string | string[]
</td><td>(Optional) Manually add path pattern that should be excluded from the edge function routes that are created by the 'manifest.json' file.
If not specified, the following paths are excluded by default:
https://docs.netlify.com/edge-functions/declarations/\#declare-edge-functions-in-netlify-toml
</td></tr> <tr><td> </td><td> </td><td>boolean
</td><td>(Optional) Determines if the build should generate the edge functions declarations manifest.json file.
https://docs.netlify.com/edge-functions/declarations/
Defaults to true.
string[]
</td><td>(Optional) Manually add pathnames that should be treated as static paths and not SSR. For example, when these pathnames are requested, their response should come from a static file, rather than a server-side rendered response.
</td></tr> </tbody></table>