mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
e42d63a25a
Co-authored-by: Daniel Roe <daniel@roe.dev>
159 lines
4.7 KiB
TypeScript
159 lines
4.7 KiB
TypeScript
import { defineUntypedSchema } from 'untyped'
|
|
|
|
export default defineUntypedSchema({
|
|
experimental: {
|
|
/**
|
|
* Set to true to generate an async entry point for the Vue bundle (for module federation support).
|
|
*/
|
|
asyncEntry: {
|
|
$resolve: (val) => val ?? false
|
|
},
|
|
|
|
/**
|
|
* Enable Vue's reactivity transform
|
|
* @see https://vuejs.org/guide/extras/reactivity-transform.html
|
|
*/
|
|
reactivityTransform: false,
|
|
|
|
/**
|
|
* Externalize `vue`, `@vue/*` and `vue-router` when building.
|
|
* @see https://github.com/nuxt/nuxt/issues/13632
|
|
*/
|
|
externalVue: true,
|
|
|
|
/**
|
|
* Tree shakes contents of client-only components from server bundle.
|
|
* @see https://github.com/nuxt/framework/pull/5750
|
|
*/
|
|
treeshakeClientOnly: true,
|
|
|
|
/**
|
|
* Emit `app:chunkError` hook when there is an error loading vite/webpack
|
|
* chunks.
|
|
*
|
|
* By default, Nuxt will also perform a hard reload of the new route
|
|
* when a chunk fails to load when navigating to a new route.
|
|
*
|
|
* You can disable automatic handling by setting this to `false`, or handle
|
|
* chunk errors manually by setting it to `manual`.
|
|
*
|
|
* @see https://github.com/nuxt/nuxt/pull/19038
|
|
* @type {false | 'manual' | 'automatic'}
|
|
*/
|
|
emitRouteChunkError: {
|
|
$resolve: val => {
|
|
if (val === true) {
|
|
return 'manual'
|
|
}
|
|
if (val === 'reload') {
|
|
return 'automatic'
|
|
}
|
|
return val ?? 'automatic'
|
|
},
|
|
},
|
|
|
|
/**
|
|
* Whether to restore Nuxt app state from `sessionStorage` when reloading the page
|
|
* after a chunk error or manual `reloadNuxtApp()` call.
|
|
*
|
|
* To avoid hydration errors, it will be applied only after the Vue app has been mounted,
|
|
* meaning there may be a flicker on initial load.
|
|
*
|
|
* Consider carefully before enabling this as it can cause unexpected behavior, and
|
|
* consider providing explicit keys to `useState` as auto-generated keys may not match
|
|
* across builds.
|
|
*
|
|
* @type {boolean}
|
|
*/
|
|
restoreState: false,
|
|
|
|
/**
|
|
* Use vite-node for on-demand server chunk loading
|
|
*
|
|
* @deprecated use `vite.devBundler: 'vite-node'`
|
|
*/
|
|
viteNode: {
|
|
$resolve: (val) => {
|
|
val = process.env.EXPERIMENTAL_VITE_NODE ? true : val
|
|
if (val === true) {
|
|
console.warn('`vite-node` is now enabled by default. You can safely remove `experimental.viteNode` from your config.')
|
|
} else if (val === false) {
|
|
console.warn('`vite-node` is now enabled by default. To disable it, set `vite.devBundler` to `legacy` instead.')
|
|
}
|
|
return val ?? true
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Split server bundle into multiple chunks and dynamically import them.
|
|
*
|
|
* @see https://github.com/nuxt/nuxt/issues/14525
|
|
*/
|
|
viteServerDynamicImports: true,
|
|
|
|
/**
|
|
* Inline styles when rendering HTML (currently vite only).
|
|
*
|
|
* You can also pass a function that receives the path of a Vue component
|
|
* and returns a boolean indicating whether to inline the styles for that component.
|
|
*
|
|
* @type {boolean | ((id?: string) => boolean)}
|
|
*/
|
|
inlineSSRStyles: {
|
|
async $resolve(val, get) {
|
|
if (val === false || (await get('dev')) || (await get('ssr')) === false || (await get('builder')) === '@nuxt/webpack-builder') {
|
|
return false
|
|
}
|
|
// Enabled by default for vite prod with ssr
|
|
return val ?? true
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Turn off rendering of Nuxt scripts and JS resource hints.
|
|
*/
|
|
noScripts: false,
|
|
|
|
/**
|
|
* When this option is enabled (by default) payload of pages generated with `nuxt generate` are extracted
|
|
*/
|
|
payloadExtraction: undefined,
|
|
|
|
/**
|
|
* Whether to enable the experimental `<NuxtClientFallback>` component for rendering content on the client
|
|
* if there's an error in SSR.
|
|
*/
|
|
clientFallback: false,
|
|
|
|
/** Enable cross-origin prefetch using the Speculation Rules API. */
|
|
crossOriginPrefetch: false,
|
|
|
|
/**
|
|
* Write early hints when using node server.
|
|
*
|
|
* @note nginx does not support 103 Early hints in the current version.
|
|
*/
|
|
writeEarlyHints: false,
|
|
|
|
/**
|
|
* Experimental component islands support with <NuxtIsland> and .island.vue files.
|
|
*/
|
|
componentIslands: false,
|
|
|
|
/**
|
|
* Config schema support
|
|
*
|
|
* @see https://github.com/nuxt/nuxt/issues/15592
|
|
*/
|
|
configSchema: true,
|
|
|
|
/**
|
|
* Whether or not to add a compatibility layer for modules, plugins or user code relying on the old
|
|
* `@vueuse/head` API.
|
|
*
|
|
* This can be disabled for most Nuxt sites to reduce the client-side bundle by ~0.5kb.
|
|
*/
|
|
polyfillVueUseHead: true
|
|
}
|
|
})
|