The rootDir property
Define the workspace of Nuxt.js application
-
Type:
String
-
Default:
process.cwd()
This property will be overwritten by the nuxt commands(nuxt start, nuxt build etc) if an argument is passed to them. Eg running nuxt ./my-app/
will set the rootDir
to the absolute path of ./my-app/
from the current/working directory.
Because of that its normally not needed to configure this option unless you will use Nuxt.js programmatically .
Both
rootDir
as the package root containing the node_modules
directory need to be within the same directory tree to be able to resolve dependencies. See the srcDir
option for examples of directory structure when that is not the case.
Edit this page on GitHub
Updated at Mon, Jul 12, 2021