2022-02-25 19:11:01 +00:00
import defu from 'defu'
2022-02-21 11:25:31 +00:00
import { join } from 'pathe'
2021-11-03 14:39:38 +00:00
import { isCI , isTest } from 'std-env'
2022-01-18 16:59:14 +00:00
import { normalizeURL , withTrailingSlash } from 'ufo'
2022-08-26 15:47:29 +00:00
import { defineUntypedSchema } from 'untyped'
2021-03-28 20:14:04 +00:00
2022-08-26 15:47:29 +00:00
export default defineUntypedSchema ( {
2021-04-15 18:49:29 +00:00
/ * *
2022-02-25 19:11:01 +00:00
* The builder to use for bundling the Vue part of your application .
2021-04-15 18:49:29 +00:00
*
2022-02-25 19:11:01 +00:00
* @type { 'vite' | 'webpack' | { bundle : ( nuxt : typeof import ( '../src/types/nuxt' ) . Nuxt ) = > Promise < void > } }
2022-04-01 13:02:26 +00:00
* @version 3
2021-04-15 18:49:29 +00:00
* /
2022-02-25 19:11:01 +00:00
builder : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > {
2022-02-25 19:11:01 +00:00
if ( typeof val === 'object' ) {
return val
2022-02-21 11:25:31 +00:00
}
2022-08-26 15:47:29 +00:00
const map : Record < string , string > = {
2022-02-25 19:11:01 +00:00
vite : '@nuxt/vite-builder' ,
webpack : '@nuxt/webpack-builder' ,
2022-02-21 11:25:31 +00:00
}
2022-09-13 10:57:14 +00:00
return map [ val ] || val || ( await get ( 'vite' ) === false ? map.webpack : map.vite )
2022-08-11 21:25:35 +00:00
}
2022-02-21 11:25:31 +00:00
} ,
2022-04-22 15:35:42 +00:00
/ * *
* Whether to generate sourcemaps .
*
2022-09-07 11:32:10 +00:00
* @type { boolean | { server? : boolean , client? : boolean } }
2022-04-22 15:35:42 +00:00
* @version 3
* /
2022-09-07 11:32:10 +00:00
sourcemap : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > {
2022-09-07 11:32:10 +00:00
if ( typeof val === 'boolean' ) {
return { server : val , client : val }
}
return defu ( val , {
server : true ,
2022-09-12 18:22:41 +00:00
client : await get ( 'dev' )
2022-09-07 11:32:10 +00:00
} )
} ,
} ,
2022-04-01 13:02:26 +00:00
/ * *
* Shared build configuration .
2021-08-11 21:48:33 +00:00
* @version 2
2022-02-25 19:11:01 +00:00
* @version 3
2021-04-15 18:49:29 +00:00
* /
2022-04-01 13:02:26 +00:00
build : {
/ * *
* Suppresses most of the build output log .
*
* It is enabled by default when a CI or test environment is detected .
*
* @see [ std - env ] ( https : //github.com/unjs/std-env)
* @version 2
* @version 3
* /
2022-02-25 19:11:01 +00:00
quiet : Boolean ( isCI || isTest ) ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Nuxt uses ` webpack-bundle-analyzer ` to visualize your bundles and how to optimize them .
*
* Set to ` true ` to enable bundle analysis , or pass an object with options : [ for webpack ] ( https : //github.com/webpack-contrib/webpack-bundle-analyzer#options-for-plugin) or [for vite](https://github.com/btd/rollup-plugin-visualizer#options).
*
* @example
* ` ` ` js
* analyze : {
* analyzerMode : 'static'
* }
* ` ` `
* @type { boolean | typeof import ( 'webpack-bundle-analyzer' ) . BundleAnalyzerPlugin . Options | typeof import ( 'rollup-plugin-visualizer' ) . PluginVisualizerOptions }
* /
analyze : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > {
2022-08-29 10:42:05 +00:00
if ( val !== true ) {
2022-02-25 19:11:01 +00:00
return val ? ? false
}
2022-09-12 18:22:41 +00:00
const rootDir = await get ( 'rootDir' )
2022-02-25 19:11:01 +00:00
return {
template : 'treemap' ,
projectRoot : rootDir ,
filename : join ( rootDir , '.nuxt/stats' , '{name}.html' )
}
}
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Enable the profiler in webpackbar .
*
* It is normally enabled by CLI argument ` --profile ` .
*
* @see [ webpackbar ] ( https : //github.com/unjs/webpackbar#profile)
* @version 2
* /
profile : process.argv.includes ( '--profile' ) ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Enables Common CSS Extraction using
* [ Vue Server Renderer guidelines ] ( https : //ssr.vuejs.org/guide/css.html).
*
* Using [ extract - css - chunks - webpack - plugin ] ( https : //github.com/faceyspacey/extract-css-chunks-webpack-plugin/) under the hood, your CSS will be extracted
* into separate files , usually one per component . This allows caching your CSS and
* JavaScript separately and is worth trying if you have a lot of global or shared CSS .
*
* @example
* ` ` ` js
* export default {
* build : {
* extractCSS : true ,
* // or
* extractCSS : {
* ignoreOrder : true
* }
* }
* }
* ` ` `
*
* If you want to extract all your CSS to a single file , there is a workaround for this .
* However , note that it is not recommended to extract everything into a single file .
* Extracting into multiple CSS files is better for caching and preload isolation . It
* can also improve page performance by downloading and resolving only those resources
* that are needed .
*
* @example
* ` ` ` js
* export default {
* build : {
* extractCSS : true ,
* optimization : {
* splitChunks : {
* cacheGroups : {
* styles : {
* name : 'styles' ,
* test : /\.(css|vue)$/ ,
* chunks : 'all' ,
* enforce : true
* }
* }
* }
* }
* }
* }
* ` ` `
* @version 2
* /
extractCSS : false ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Enables CSS source map support ( defaults to true in development )
* @version 2
* /
cssSourceMap : {
2022-09-15 11:10:36 +00:00
$resolve : async ( val , get ) = > val ? ? ( await get ( 'sourcemap.client' ) || await get ( 'sourcemap.server' ) ) ? ? await get ( 'dev' )
2022-02-25 19:11:01 +00:00
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Creates special webpack bundle for SSR renderer . It is normally not necessary to change this value .
* @version 2
* /
ssr : undefined ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Enable [ thread - loader ] ( https : //github.com/webpack-contrib/thread-loader#thread-loader) when building app with webpack.
*
* @warning This is an unstable feature .
* @version 2
* /
parallel : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > await get ( 'build.extractCSS' ) ? false : Boolean ( val )
2022-02-25 19:11:01 +00:00
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Enable caching for [ ` terser-webpack-plugin ` ] ( https : //github.com/webpack-contrib/terser-webpack-plugin#options)
2022-08-11 21:25:35 +00:00
* and [ ` cache-loader ` ] ( https : //github.com/webpack-contrib/cache-loader#cache-loader).
2022-02-25 19:11:01 +00:00
*
* @warning This is an unstable feature .
* @version 2
* /
cache : false ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
2022-08-11 21:25:35 +00:00
* Inline server bundle dependencies .
2022-02-25 19:11:01 +00:00
*
* This mode bundles ` node_modules ` that are normally preserved as externals in the server build .
*
* @warning Runtime dependencies ( module s , ` nuxt.config ` , server middleware and the static directory ) are not bundled .
* This feature only disables use of [ webpack - externals ] ( https : //webpack.js.org/configuration/externals/) for server-bundle.
*
* @note You can enable standalone bundling by passing ` --standalone ` via the command line .
*
* @see [ context ] ( https : //github.com/nuxt/nuxt.js/pull/4661)
* @version 2
* /
standalone : false ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* If you are uploading your dist files to a CDN , you can set the publicPath to your CDN .
*
* @note This is only applied in production .
*
* The value of this property at runtime will override the configuration of an app that
* has already been built .
*
* @example
* ` ` ` js
* build : {
* publicPath : process.env.PUBLIC_PATH || 'https://cdn.nuxtjs.org'
* }
* ` ` `
* @version 2
* /
publicPath : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > val ? withTrailingSlash ( normalizeURL ( val ) ) : ( await get ( 'app' ) . buildAssetsDir )
2022-02-25 19:11:01 +00:00
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* The polyfill library to load to provide URL and URLSearchParams .
*
* Defaults to ` 'url' ` ( [ see package ] ( https : //www.npmjs.com/package/url)).
* @version 2
* /
serverURLPolyfill : 'url' ,
/ * *
* Customize bundle filenames .
*
* To understand a bit more about the use of manifests , take a look at [ this webpack documentation ] ( https : //webpack.js.org/guides/code-splitting/).
*
* @note Be careful when using non - hashed based filenames in production
* as most browsers will cache the asset and not detect the changes on first load .
*
* This example changes fancy chunk names to numerical ids :
*
* @example
* ` ` ` js
* filenames : {
* chunk : ( { isDev } ) = > ( isDev ? '[name].js' : '[id].[contenthash].js' )
* }
* ` ` `
2022-08-26 15:47:29 +00:00
* @type { Record < string , ( ( arg : any ) = > string ) > }
2022-02-25 19:11:01 +00:00
* @version 2
* /
filenames : {
2022-08-26 15:47:29 +00:00
app : ( { isDev , isModern } : any ) = > isDev ? ` [name] ${ isModern ? '.modern' : '' } .js ` : ` [contenthash:7] ${ isModern ? '.modern' : '' } .js ` ,
chunk : ( { isDev , isModern } : any ) = > isDev ? ` [name] ${ isModern ? '.modern' : '' } .js ` : ` [contenthash:7] ${ isModern ? '.modern' : '' } .js ` ,
css : ( { isDev } : any ) = > isDev ? '[name].css' : 'css/[contenthash:7].css' ,
img : ( { isDev } : any ) = > isDev ? '[path][name].[ext]' : 'img/[name].[contenthash:7].[ext]' ,
font : ( { isDev } : any ) = > isDev ? '[path][name].[ext]' : 'fonts/[name].[contenthash:7].[ext]' ,
video : ( { isDev } : any ) = > isDev ? '[path][name].[ext]' : 'videos/[name].[contenthash:7].[ext]'
2021-04-02 19:38:11 +00:00
} ,
2022-02-25 19:11:01 +00:00
/ * *
* Customize the options of Nuxt ' s integrated webpack loaders .
* @version 2
* /
loaders : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > {
2022-02-25 19:11:01 +00:00
const styleLoaders = [
'css' , 'cssModules' , 'less' ,
'sass' , 'scss' , 'stylus' , 'vueStyle'
]
for ( const name of styleLoaders ) {
const loader = val [ name ]
2022-04-22 15:35:42 +00:00
if ( loader && loader . sourcemap === undefined ) {
2022-09-12 18:22:41 +00:00
loader . sourcemap = Boolean ( await get ( 'build.cssSourceMap' ) )
2022-02-25 19:11:01 +00:00
}
}
return val
2021-10-26 12:49:18 +00:00
} ,
2022-02-25 19:11:01 +00:00
file : { esModule : false } ,
fontUrl : { esModule : false , limit : 1000 } ,
imgUrl : { esModule : false , limit : 1000 } ,
pugPlain : { } ,
vue : {
2022-09-12 18:22:41 +00:00
productionMode : { $resolve : async ( val , get ) = > val ? ? ! ( await get ( 'dev' ) ) } ,
2022-02-25 19:11:01 +00:00
transformAssetUrls : {
video : 'src' ,
source : 'src' ,
object : 'src' ,
embed : 'src'
} ,
2022-09-12 18:22:41 +00:00
compilerOptions : { $resolve : async ( val , get ) = > val ? ? await get ( 'vue.compilerOptions' ) } ,
2022-02-25 19:11:01 +00:00
} ,
css : {
importLoaders : 0 ,
esModule : false
} ,
cssModules : {
importLoaders : 0 ,
esModule : false ,
module s : {
localIdentName : '[local]_[hash:base64:5]'
}
} ,
less : { } ,
sass : {
sassOptions : {
indentedSyntax : true
}
} ,
scss : { } ,
stylus : { } ,
vueStyle : { }
2021-03-28 20:14:04 +00:00
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* @deprecated Use [ style - resources - module ] ( https : //github.com/nuxt-community/style-resources-module/)
* @version 2
* /
styleResources : { } ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Add webpack plugins .
*
* @example
* ` ` ` js
* import webpack from 'webpack'
* import { version } from './package.json'
* // ...
* plugins : [
* new webpack . DefinePlugin ( {
* 'process.VERSION' : version
* } )
* ]
* ` ` `
* @version 2
* /
plugins : [ ] ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Terser plugin options .
*
* Set to false to disable this plugin , or pass an object of options .
*
* @see [ terser - webpack - plugin documentation ] ( https : //github.com/webpack-contrib/terser-webpack-plugin)
*
2022-04-22 15:35:42 +00:00
* @note Enabling sourcemap will leave ` //# sourcemappingURL ` linking comment at
2022-02-25 19:11:01 +00:00
* the end of each output file if webpack ` config.devtool ` is set to ` source-map ` .
* @version 2
* /
terser : { } ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Enables the [ HardSourceWebpackPlugin ] ( https : //github.com/mzgoddard/hard-source-webpack-plugin) for improved caching.
*
* @warning unstable
* @version 2
* /
hardSource : false ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Hard - replaces ` typeof process ` , ` typeof window ` and ` typeof document ` to tree - shake bundle .
* @version 2
* /
aggressiveCodeRemoval : false ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* OptimizeCSSAssets plugin options .
*
* Defaults to true when ` extractCSS ` is enabled .
*
* @see [ optimize - css - assets - webpack - plugin documentation ] ( https : //github.com/NMFR/optimize-css-assets-webpack-plugin).
* @version 2
* /
optimizeCSS : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > val ? ? ( await get ( 'build.extractCSS' ) ? { } : false )
2022-02-25 19:11:01 +00:00
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Configure [ webpack optimization ] ( https : //webpack.js.org/configuration/optimization/).
* @version 2
* /
optimization : {
runtimeChunk : 'single' ,
/** Set minimize to false to disable all minimizers. (It is disabled in development by default) */
2022-08-26 15:47:29 +00:00
minimize : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > val ? ? ! ( await get ( 'dev' ) )
2022-08-26 15:47:29 +00:00
} ,
2022-02-25 19:11:01 +00:00
/** You can set minimizer to a customized array of plugins. */
minimizer : undefined ,
splitChunks : {
chunks : 'all' ,
automaticNameDelimiter : '/' ,
cacheGroups : { }
}
} ,
2021-04-15 18:49:29 +00:00
2021-06-16 11:22:27 +00:00
/ * *
2022-02-25 19:11:01 +00:00
* Whether to split code for ` layout ` , ` pages ` and ` commons ` chunks .
2021-06-16 11:22:27 +00:00
*
2022-02-25 19:11:01 +00:00
* Commons libs include ` vue ` , ` vue-loader ` , ` vue-router ` , ` vuex ` , etc .
* @version 2
2021-06-16 11:22:27 +00:00
* /
2022-02-25 19:11:01 +00:00
splitChunks : {
layouts : false ,
pages : true ,
commons : true
} ,
2021-04-15 18:49:29 +00:00
/ * *
2022-02-25 19:11:01 +00:00
* Nuxt will automatically detect the current version of ` core-js ` in your project ( ` 'auto' ` ) ,
* or you can specify which version you want to use ( ` 2 ` or ` 3 ` ) .
* @version 2
* /
corejs : 'auto' ,
/ * *
* Customize your Babel configuration .
2021-04-15 18:49:29 +00:00
*
2022-02-25 19:11:01 +00:00
* See [ babel - loader options ] ( https : //github.com/babel/babel-loader#options) and
* [ babel options ] ( https : //babeljs.io/docs/en/options).
2021-04-15 18:49:29 +00:00
*
2022-02-25 19:11:01 +00:00
* @note ` .babelrc ` is ignored by default .
* @version 2
* /
babel : {
configFile : false ,
babelrc : false ,
/ * *
* An array of Babel plugins to load , or a function that takes webpack context and returns
* an array of Babel plugins .
*
* For more information see [ Babel plugins options ] ( https : //babeljs.io/docs/en/options#plugins)
* and [ babel - loader options ] ( https : //github.com/babel/babel-loader#options).
* /
plugins : [ ] ,
/ * *
* The Babel presets to be applied .
*
* @note The presets configured here will be applied to both the client and the server
* build . The target will be set by Nuxt accordingly ( client / server ) . If you want to configure
* the preset differently for the client or the server build , please use presets as a function .
*
* @warning It is highly recommended to use the default preset instead customizing .
*
* @example
* ` ` ` js
* export default {
* build : {
* babel : {
* presets ( { isServer } , [ preset , options ] ) {
* // change options directly
* options . targets = isServer ? '...' : '...'
* options . corejs = '...'
* // return nothing
* }
* }
* }
* }
* ` ` `
*
* @example
* ` ` ` js
* export default {
* build : {
* babel : {
* presets ( { isServer } , [ preset , options ] ) {
* return [
* [
* preset ,
* {
* targets : isServer ? '...' : '...' ,
* . . . options
* }
* ] ,
* [
* // Other presets
* ]
* ]
* }
* }
* }
* }
* ` ` `
* /
presets : { } ,
cacheDirectory : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > val ? ? ( await get ( 'dev' ) )
2022-02-25 19:11:01 +00:00
}
} ,
/ * *
* If you want to transpile specific dependencies with Babel , you can add them here .
* Each item in transpile can be a package name , a function , a string or regex object matching the
* dependency ' s file name .
2021-04-15 18:49:29 +00:00
*
2022-02-25 19:11:01 +00:00
* You can also use a function to conditionally transpile . The function will receive an object ( { isDev , isServer , isClient , isModern , isLegacy } ) .
2021-04-15 18:49:29 +00:00
*
* @example
* ` ` ` js
2022-02-25 19:11:01 +00:00
transpile : [ ( { isLegacy } ) = > isLegacy && 'ky' ]
2021-04-15 18:49:29 +00:00
* ` ` `
2022-02-25 19:11:01 +00:00
* @version 2
* @version 3
* @type { Array < string | RegExp | Function > }
2021-04-15 18:49:29 +00:00
* /
2022-02-25 19:11:01 +00:00
transpile : {
$resolve : val = > [ ] . concat ( val ) . filter ( Boolean )
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Customize PostCSS Loader plugins .
* Sames options as https : //github.com/webpack-contrib/postcss-loader#options
* @version 2
* /
postcss : {
execute : undefined ,
postcssOptions : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > {
2022-02-25 19:11:01 +00:00
// Ensure we return the same object in `build.postcss.postcssOptions as `postcss`
// so modules which modify the configuration continue to work.
2022-09-12 18:22:41 +00:00
const postcssOptions = await get ( 'postcss' )
2022-02-25 19:11:01 +00:00
Object . assign ( postcssOptions , defu ( postcssOptions , val ) )
return postcssOptions
}
} ,
2022-04-22 15:35:42 +00:00
sourcemap : undefined ,
2022-02-25 19:11:01 +00:00
implementation : undefined ,
order : ''
} ,
2021-04-15 18:49:29 +00:00
2022-02-25 19:11:01 +00:00
/** @version 2 */
html : {
/ * *
* Configuration for the html - minifier plugin used to minify HTML files created
* during the build process ( will be applied for all modes ) .
*
* @warning If you make changes , they won ' t be merged with the defaults !
*
* @example
* ` ` ` js
* export default {
* html : {
* minify : {
* collapseBooleanAttributes : true ,
* decodeEntities : true ,
* minifyCSS : true ,
* minifyJS : true ,
* processConditionalComments : true ,
* removeEmptyAttributes : true ,
* removeRedundantAttributes : true ,
* trimCustomFragments : true ,
* useShortDoctype : true
* }
* }
* }
* ` ` `
* /
minify : {
collapseBooleanAttributes : true ,
decodeEntities : true ,
minifyCSS : true ,
minifyJS : true ,
processConditionalComments : true ,
removeEmptyAttributes : true ,
removeRedundantAttributes : true ,
trimCustomFragments : true ,
useShortDoctype : true
}
2021-09-17 16:20:05 +00:00
} ,
2021-04-15 18:49:29 +00:00
/ * *
2022-02-25 19:11:01 +00:00
* Allows setting a different app template ( other than ` @nuxt/vue-app ` )
* @version 2
* /
template : undefined ,
/ * *
* You can provide your own templates which will be rendered based
* on Nuxt configuration . This feature is specially useful for using with module s.
2021-04-15 18:49:29 +00:00
*
2022-02-25 19:11:01 +00:00
* Templates are rendered using [ ` lodash.template ` ] ( https : //lodash.com/docs/4.17.15#template).
2021-04-15 18:49:29 +00:00
*
* @example
* ` ` ` js
2022-02-25 19:11:01 +00:00
* templates : [
* {
* src : '~/modules/support/plugin.js' , // `src` can be absolute or relative
* dst : 'support.js' , // `dst` is relative to project `.nuxt` dir
* options : {
* // Options are provided to template as `options` key
* live_chat : false
2021-08-11 21:48:33 +00:00
* }
* }
2022-02-25 19:11:01 +00:00
* ]
2021-04-15 18:49:29 +00:00
* ` ` `
2022-02-25 19:11:01 +00:00
* @version 2
* @version 3
2021-04-15 18:49:29 +00:00
* /
2022-02-25 19:11:01 +00:00
templates : [ ] ,
2021-03-28 20:14:04 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* You can provide your custom files to watch and regenerate after changes .
*
2022-04-16 13:53:36 +00:00
* This feature is especially useful for using with module s.
2022-02-25 19:11:01 +00:00
*
* @example
* ` ` ` js
watch : [ '~/.nuxt/support.js' ]
* ` ` `
* @version 2
* /
watch : [ ] ,
/ * *
* See [ webpack - dev - middleware ] ( https : //github.com/webpack/webpack-dev-middleware) for available options.
* @version 2
* /
devMiddleware : {
stats : 'none'
} ,
/ * *
* See [ webpack - hot - middleware ] ( https : //github.com/webpack-contrib/webpack-hot-middleware) for available options.
* @version 2
* /
hotMiddleware : { } ,
2021-03-28 20:14:04 +00:00
2022-02-25 19:11:01 +00:00
/** @version 2 */
vendor : {
$meta : {
deprecated : 'vendor has been deprecated since nuxt 2'
}
} ,
2021-03-28 20:14:04 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Set to ` 'none' ` or ` false ` to disable stats printing out after a build .
* @version 2
* /
stats : {
2022-09-12 18:22:41 +00:00
$resolve : async ( val , get ) = > ( val === 'none' || ( await get ( 'build.quiet' ) ) ) ? false : val ,
2022-02-25 19:11:01 +00:00
excludeAssets : [
/.map$/ ,
/index\..+\.html$/ ,
/vue-ssr-(client|modern)-manifest.json/
]
} ,
/ * *
2022-08-11 21:25:35 +00:00
* Set to ` false ` to disable the overlay provided by [ FriendlyErrorsWebpackPlugin ] ( https : //github.com/nuxt/friendly-errors-webpack-plugin).
2022-02-25 19:11:01 +00:00
* @version 2
* /
friendlyErrors : true ,
/ * *
* Additional extensions ( beyond ` ['vue', 'js'] ` to support in ` pages/ ` , ` layouts/ ` , ` middleware/ ` , etc . )
* @version 2
* /
additionalExtensions : [ ] ,
/ * *
* Filters to hide build warnings .
* @version 2
* /
warningIgnoreFilters : [ ] ,
2022-02-25 12:42:34 +00:00
2022-02-25 19:11:01 +00:00
/ * *
* Set to true to scan files within symlinks in the build ( such as within ` pages/ ` ) .
* @version 2
* /
followSymlinks : false
}
2022-08-26 15:47:29 +00:00
} )