mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-11 19:28:05 +00:00
14 lines
446 B
JavaScript
14 lines
446 B
JavaScript
// @ts-check
|
|
import { Agent as HTTPSAgent } from 'node:https'
|
|
import { $fetch } from 'ofetch'
|
|
|
|
/** @type {import('../vite-node').ViteNodeServerOptions} */
|
|
export const viteNodeOptions = JSON.parse(process.env.NUXT_VITE_NODE_OPTIONS || '{}')
|
|
|
|
export const viteNodeFetch = $fetch.create({
|
|
baseURL: viteNodeOptions.baseURL,
|
|
agent: viteNodeOptions.baseURL.startsWith('https://')
|
|
? new HTTPSAgent({ rejectUnauthorized: false })
|
|
: null,
|
|
})
|