The dir property The dir property Define the custom directories for your Nuxt application Type: Object Default: { assets : 'assets' , app : 'app' , layouts ...
How to add webpack plugins? How to add webpack plugins? In your nuxt.config.js file, under the build option, you can pass webpack plugins , the same way you would doit in ...
clearError clearError Nuxt provides a composable to clear all handled errors. Within your pages, components, and plugins, you can use clearError to clear all errors and redi...
How to use JSX? How to use JSX? Nuxt.js uses @nuxt/babel-preset-app , which is based on the official @vue/babel-preset-app for babel default configuration, so you can use JSX ...
API: The srcDir Property API: The srcDir Property Type: String Default: rootDir value Define the source directory of your Nuxt.js application Example (nuxt.config.js ): ...
API: The Component API: The Component This component is used to purposely render a component only on client-side. To import a component only on the client, register the comp...