2021-09-27 12:49:36 +00:00
import { resolve , join } from 'pathe'
2021-03-28 20:14:04 +00:00
import { existsSync , readdirSync } from 'fs'
import defu from 'defu'
export default {
2022-04-01 13:02:26 +00:00
/ * *
* Vue . js config
* @version 2
* @version 3
* /
2021-03-28 20:14:04 +00:00
vue : {
2021-04-15 18:49:29 +00:00
/ * *
2021-10-26 12:49:18 +00:00
* Properties that will be set directly on ` Vue.config ` for vue @2 .
2021-04-15 18:49:29 +00:00
*
2022-02-07 10:16:45 +00:00
* @see [ vue @2 Documentation ] ( https : //v2.vuejs.org/v2/api/#Global-Config)
2021-11-19 12:22:27 +00:00
* @type { import ( 'vue/types/vue' ) . VueConfiguration }
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
config : {
2021-07-31 20:26:41 +00:00
silent : { $resolve : ( val , get ) = > val ? ? ! get ( 'dev' ) } ,
2021-10-26 12:49:18 +00:00
performance : { $resolve : ( val , get ) = > val ? ? get ( 'dev' ) } ,
} ,
/ * *
* Options for the Vue compiler that will be passed at build time
2022-02-07 10:16:45 +00:00
* @see [ documentation ] ( https : //vuejs.org/api/application.html#app-config-compileroptions)
2021-11-19 12:22:27 +00:00
* @type { import ( '@vue/compiler-core' ) . CompilerOptions }
2021-10-26 12:49:18 +00:00
* @version 3
* /
compilerOptions : { }
2021-03-28 20:14:04 +00:00
} ,
2021-04-15 18:49:29 +00:00
/ * *
* Nuxt App configuration .
2021-08-11 21:48:33 +00:00
* @version 2
2022-01-18 16:59:14 +00:00
* @version 3
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
app : {
2022-01-18 16:59:14 +00:00
/ * *
* The base path of your Nuxt application .
*
2022-04-06 12:08:53 +00:00
* This can be set at runtime by setting the NUXT_APP_BASE_URL environment variable .
2022-01-18 16:59:14 +00:00
* @example
* ` ` ` bash
2022-04-06 12:08:53 +00:00
* NUXT_APP_BASE_URL = /prefix/ node . output / server / index . mjs
2022-01-18 16:59:14 +00:00
* ` ` `
* /
2022-04-07 11:28:04 +00:00
baseURL : process.env.NUXT_APP_BASE_URL || '/' ,
2022-01-18 16:59:14 +00:00
/** The folder name for the built site assets, relative to `baseURL` (or `cdnURL` if set). This is set at build time and should not be customized at runtime. */
2022-04-07 11:28:04 +00:00
buildAssetsDir : process.env.NUXT_APP_BUILD_ASSETS_DIR || '/_nuxt/' ,
2022-01-18 16:59:14 +00:00
/ * *
* The folder name for the built site assets , relative to ` baseURL ` ( or ` cdnURL ` if set ) .
* @deprecated - use ` buildAssetsDir ` instead
* @version 2
* /
assetsPath : {
$resolve : ( val , get ) = > val ? ? get ( 'buildAssetsDir' )
} ,
/ * *
* An absolute URL to serve the public folder from ( production - only ) .
*
* This can be set to a different value at runtime by setting the CDN_URL environment variable .
* @example
* ` ` ` bash
* CDN_URL = https : //mycdn.org/ node .output/server/index.mjs
* ` ` `
* /
cdnURL : {
2022-04-07 11:28:04 +00:00
$resolve : ( val , get ) = > get ( 'dev' ) ? '' : ( process . env . NUXT_APP_CDN_URL ? ? val ) || ''
2022-04-05 14:02:29 +00:00
} ,
/ * *
* Set default configuration for ` <head> ` on every page .
*
* @example
* ` ` ` js
* app : {
* head : {
* meta : [
* // <meta name="viewport" content="width=device-width, initial-scale=1">
* { name : 'viewport' , content : 'width=device-width, initial-scale=1' }
* ] ,
* script : [
* // <script src="https://myawesome-lib.js"></script>
* { src : 'https://awesome-lib.js' }
* ] ,
* link : [
* // <link rel="stylesheet" href="https://myawesome-lib.css">
* { rel : 'stylesheet' , href : 'https://awesome-lib.css' }
* ] ,
* // please note that this is an area that is likely to change
* style : [
* // <style type="text/css">:root { color: red }</style>
* { children : ':root { color: red }' , type : 'text/css' }
* ]
* }
* }
* ` ` `
* @type { typeof import ( '../src/types/meta' ) . MetaObject }
* @version 3
* /
head : {
$resolve : ( val , get ) = > {
return defu ( val , get ( 'meta' ) , {
meta : [ ] ,
link : [ ] ,
style : [ ] ,
script : [ ]
} )
}
} ,
2021-03-28 20:14:04 +00:00
} ,
/ * *
2021-04-15 18:49:29 +00:00
* The path to a templated HTML file for rendering Nuxt responses .
* Uses ` <srcDir>/app.html ` if it exists or the Nuxt default template if not .
*
* @example
* ` ` ` html
* < ! DOCTYPE html >
* < html {{ HTML_ATTRS }} >
* < head {{ HEAD_ATTRS }} >
* { { HEAD } }
* < / head >
* < body {{ BODY_ATTRS }} >
* { { APP } }
* < / body >
* < / html >
* ` ` `
2021-08-11 21:48:33 +00:00
* @version 2
2021-03-28 20:14:04 +00:00
* /
appTemplatePath : {
$resolve : ( val , get ) = > {
if ( val ) {
return resolve ( get ( 'srcDir' ) , val )
}
if ( existsSync ( join ( get ( 'srcDir' ) , 'app.html' ) ) ) {
return join ( get ( 'srcDir' ) , 'app.html' )
}
return resolve ( get ( 'buildDir' ) , 'views/app.template.html' )
}
} ,
2021-04-15 18:49:29 +00:00
/ * *
* Enable or disable vuex store .
2021-08-11 21:48:33 +00:00
*
* By default it is enabled if there is a ` store/ ` directory
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
store : {
$resolve : ( val , get ) = > val !== false &&
existsSync ( join ( get ( 'srcDir' ) , get ( 'dir.store' ) ) ) &&
readdirSync ( join ( get ( 'srcDir' ) , get ( 'dir.store' ) ) )
. find ( filename = > filename !== 'README.md' && filename [ 0 ] !== '.' )
} ,
/ * *
2021-04-15 18:49:29 +00:00
* Options to pass directly to ` vue-meta ` .
*
* @see [ documentation ] ( https : //vue-meta.nuxtjs.org/api/#plugin-options).
2021-11-19 12:22:27 +00:00
* @type { import ( 'vue-meta' ) . VueMetaOptions }
2021-08-11 21:48:33 +00:00
* @version 2
2021-03-28 20:14:04 +00:00
* /
vueMeta : null ,
2021-04-15 18:49:29 +00:00
/ * *
* Set default configuration for ` <head> ` on every page .
*
* @see [ documentation ] ( https : //vue-meta.nuxtjs.org/api/#metainfo-properties) for specifics.
2021-11-19 12:22:27 +00:00
* @type { import ( 'vue-meta' ) . MetaInfo }
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
head : {
2021-08-11 21:48:33 +00:00
/** Each item in the array maps to a newly-created `<meta>` element, where object properties map to attributes. */
2021-03-28 20:14:04 +00:00
meta : [ ] ,
2021-08-11 21:48:33 +00:00
/** Each item in the array maps to a newly-created `<link>` element, where object properties map to attributes. */
2021-03-28 20:14:04 +00:00
link : [ ] ,
2021-08-11 21:48:33 +00:00
/** Each item in the array maps to a newly-created `<style>` element, where object properties map to attributes. */
2021-10-06 12:37:45 +00:00
style : [ ] ,
/** Each item in the array maps to a newly-created `<script>` element, where object properties map to attributes. */
script : [ ]
} ,
/ * *
2021-11-23 10:55:24 +00:00
* @type { typeof import ( '../src/types/meta' ) . MetaObject }
2021-10-06 12:37:45 +00:00
* @version 3
2022-04-05 14:02:29 +00:00
* @deprecated - use ` head ` instead
2021-10-06 12:37:45 +00:00
* /
meta : {
meta : [ ] ,
link : [ ] ,
2021-03-28 20:14:04 +00:00
style : [ ] ,
script : [ ]
} ,
2021-04-15 18:49:29 +00:00
/ * *
* Configuration for the Nuxt ` fetch() ` hook .
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
fetch : {
2021-04-15 18:49:29 +00:00
/** Whether to enable `fetch()` on the server. */
2021-03-28 20:14:04 +00:00
server : true ,
2021-04-15 18:49:29 +00:00
/** Whether to enable `fetch()` on the client. */
2021-03-28 20:14:04 +00:00
client : true
} ,
2021-04-15 18:49:29 +00:00
/ * *
* An array of nuxt app plugins .
*
* Each plugin can be a string ( which can be an absolute or relative path to a file ) .
* If it ends with ` .client ` or ` .server ` then it will be automatically loaded only
* in the appropriate context .
*
* It can also be an object with ` src ` and ` mode ` keys .
*
* @example
* ` ` ` js
* plugins : [
* '~/plugins/foo.client.js' , // only in client side
* '~/plugins/bar.server.js' , // only in server side
* '~/plugins/baz.js' , // both client & server
* { src : '~/plugins/both-sides.js' } ,
* { src : '~/plugins/client-only.js' , mode : 'client' } , // only on client side
* { src : '~/plugins/server-only.js' , mode : 'server' } // only on server side
* ]
* ` ` `
2021-11-29 11:22:00 +00:00
* @type { ( typeof import ( '../src/types/nuxt' ) . NuxtPlugin | string ) [ ] }
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
plugins : [ ] ,
2021-04-15 18:49:29 +00:00
/ * *
* You may want to extend plugins or change their order . For this , you can pass
* a function using ` extendPlugins ` . It accepts an array of plugin objects and
* should return an array of plugin objects .
2021-11-19 12:22:27 +00:00
* @type { ( plugins : Array < { src : string , mode ? : 'client' | 'server' } > ) = > Array < { src : string , mode ? : 'client' | 'server' } > }
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
extendPlugins : null ,
2021-04-15 18:49:29 +00:00
/ * *
* You can define the CSS files / module s / l i b r a r i e s y o u w a n t t o s e t g l o b a l l y
* ( included in every page ) .
*
* Nuxt will automatically guess the file type by its extension and use the
* appropriate pre - processor . You will still need to install the required
* loader if you need to use them .
*
* @example
* ` ` ` js
* css : [
* // Load a Node.js module directly (here it's a Sass file)
* 'bulma' ,
* // CSS file in the project
* '@/assets/css/main.css' ,
* // SCSS file in the project
* '@/assets/css/main.scss'
* ]
* ` ` `
2021-11-19 12:22:27 +00:00
* @type { string [ ] }
2021-08-11 21:48:33 +00:00
* @version 2
2021-10-18 07:50:37 +00:00
* @version 3
2021-04-15 18:49:29 +00:00
* /
2022-02-15 09:50:11 +00:00
css : {
$resolve : val = > ( val ? ? [ ] ) . map ( c = > c . src || c )
} ,
2021-03-28 20:14:04 +00:00
2021-04-15 18:49:29 +00:00
/ * *
* An object where each key name maps to a path to a layout . vue file .
*
* Normally there is no need to configure this directly .
2021-11-19 12:22:27 +00:00
* @type { Record < string , string > }
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
layouts : { } ,
2021-04-15 18:49:29 +00:00
/ * *
* Set a custom error page layout .
*
* Normally there is no need to configure this directly .
2021-11-19 12:22:27 +00:00
* @type { string }
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
ErrorPage : null ,
2021-04-15 18:49:29 +00:00
/ * *
* Configure the Nuxt loading progress bar component that ' s shown between
* routes . Set to ` false ` to disable . You can also customize it or create
* your own component .
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
loading : {
2021-04-15 18:49:29 +00:00
/** CSS color of the progress bar */
2021-03-28 20:14:04 +00:00
color : 'black' ,
2021-04-15 18:49:29 +00:00
/ * *
* CSS color of the progress bar when an error appended while rendering
* the route ( if data or fetch sent back an error for example ) .
* /
2021-03-28 20:14:04 +00:00
failedColor : 'red' ,
2021-04-15 18:49:29 +00:00
/** Height of the progress bar (used in the style property of the progress bar). */
2021-03-28 20:14:04 +00:00
height : '2px' ,
2021-04-15 18:49:29 +00:00
/ * *
* In ms , wait for the specified time before displaying the progress bar .
* Useful for preventing the bar from flashing .
* /
2021-03-28 20:14:04 +00:00
throttle : 200 ,
2021-04-15 18:49:29 +00:00
/ * *
* In ms , the maximum duration of the progress bar , Nuxt assumes that the
* route will be rendered before 5 seconds .
* /
2021-03-28 20:14:04 +00:00
duration : 5000 ,
2021-04-15 18:49:29 +00:00
/** Keep animating progress bar when loading takes longer than duration. */
2021-03-28 20:14:04 +00:00
continuous : false ,
2021-04-15 18:49:29 +00:00
/** Set the direction of the progress bar from right to left. */
2021-03-28 20:14:04 +00:00
rtl : false ,
2021-04-15 18:49:29 +00:00
/** Set to false to remove default progress bar styles (and add your own). */
2021-03-28 20:14:04 +00:00
css : true
} ,
2021-04-15 18:49:29 +00:00
/ * *
* Show a loading spinner while the page is loading ( only when ` ssr: false ` ) .
*
* Set to ` false ` to disable . Alternatively , you can pass a string name or an object for more
* configuration . The name can refer to an indicator from [ SpinKit ] ( https : //tobiasahlin.com/spinkit/)
* or a path to an HTML template of the indicator source code ( in this case , all the
* other options will be passed to the template . )
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
loadingIndicator : {
$resolve : ( val , get ) = > {
2021-10-26 09:47:30 +00:00
val = typeof val === 'string' ? { name : val } : val
return defu ( val , {
2021-03-28 20:14:04 +00:00
name : 'default' ,
color : get ( 'loading.color' ) || '#D3D3D3' ,
color2 : '#F5F5F5' ,
background : ( get ( 'manifest' ) && get ( 'manifest.theme_color' ) ) || 'white' ,
dev : get ( 'dev' ) ,
2021-10-26 09:47:30 +00:00
loading : get ( 'messages.loading' )
} )
2021-03-28 20:14:04 +00:00
}
} ,
2021-04-15 18:49:29 +00:00
/ * *
* Used to set the default properties of the page transitions .
*
* You can either pass a string ( the transition name ) or an object with properties to bind
* to the ` <Transition> ` component that will wrap your pages .
*
2022-02-07 10:16:45 +00:00
* @see [ vue @2 documentation ] ( https : //v2.vuejs.org/v2/guide/transitions.html)
* @see [ vue @3 documentation ] ( https : //vuejs.org/guide/built-ins/transition-group.html#enter-leave-transitions)
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2022-01-18 16:59:14 +00:00
pageTransition : {
2021-10-26 09:47:30 +00:00
$resolve : ( val , get ) = > {
val = typeof val === 'string' ? { name : val } : val
return defu ( val , {
name : 'page' ,
mode : 'out-in' ,
appear : get ( 'render.ssr' ) === false || Boolean ( val ) ,
appearClass : 'appear' ,
appearActiveClass : 'appear-active' ,
appearToClass : 'appear-to'
} )
}
2021-03-28 20:14:04 +00:00
} ,
2021-04-15 18:49:29 +00:00
/ * *
* Used to set the default properties of the layout transitions .
*
* You can either pass a string ( the transition name ) or an object with properties to bind
* to the ` <Transition> ` component that will wrap your layouts .
*
2022-02-07 10:16:45 +00:00
* @see [ vue @2 documentation ] ( https : //v2.vuejs.org/v2/guide/transitions.html)
* @see [ vue @3 documentation ] ( https : //vuejs.org/guide/built-ins/transition-group.html#enter-leave-transitions)
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
layoutTransition : {
2021-10-26 09:47:30 +00:00
$resolve : val = > {
val = typeof val === 'string' ? { name : val } : val
return defu ( val , {
name : 'layout' ,
mode : 'out-in'
} )
}
2021-03-28 20:14:04 +00:00
} ,
2021-04-15 18:49:29 +00:00
/ * *
* You can disable specific Nuxt features that you do not want .
2021-08-11 21:48:33 +00:00
* @version 2
2021-04-15 18:49:29 +00:00
* /
2021-03-28 20:14:04 +00:00
features : {
2021-04-15 18:49:29 +00:00
/** Set to false to disable Nuxt vuex integration */
2021-03-28 20:14:04 +00:00
store : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable layouts */
2021-03-28 20:14:04 +00:00
layouts : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable Nuxt integration with `vue-meta` and the `head` property */
2021-03-28 20:14:04 +00:00
meta : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable middleware */
2021-03-28 20:14:04 +00:00
middleware : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable transitions */
2021-03-28 20:14:04 +00:00
transitions : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable support for deprecated features and aliases */
2021-03-28 20:14:04 +00:00
deprecations : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable the Nuxt `validate()` hook */
2021-03-28 20:14:04 +00:00
validate : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable the Nuxt `asyncData()` hook */
2021-10-08 14:21:55 +00:00
useAsyncData : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable the Nuxt `fetch()` hook */
2021-03-28 20:14:04 +00:00
fetch : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable `$nuxt.isOnline` */
2021-03-28 20:14:04 +00:00
clientOnline : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable prefetching behavior in `<NuxtLink>` */
2021-03-28 20:14:04 +00:00
clientPrefetch : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable extra component aliases like `<NLink>` and `<NChild>` */
2021-03-28 20:14:04 +00:00
componentAliases : true ,
2021-04-15 18:49:29 +00:00
/** Set to false to disable the `<ClientOnly>` component (see [docs](https://github.com/egoist/vue-client-only)) */
2021-03-28 20:14:04 +00:00
componentClientOnly : true
}
}