You are browsing Nuxt 2 docs. Go to Nuxt 3 docs, or learn more about Nuxt 2 Long Term Support.

翻訳されたページ このページのコンテンツは古い可能性があります。

modulesDir プロパティ

Nuxt アプリケーションに対してモジュールディレクトリを定義します


  • 型: Array
  • ディレクトリ: ['node_modules']

モジュールディレクトリの設定でパス解決のために使用します。例えば Webpack の resolveLoadingnodeExternalspostcss です。設定パスは options.rootDir (デフォルト: process.cwd())からの相対パスになります。

nuxt.config.js
export default {
  modulesDir: ['../../node_modules']
}

プロジェクトが Yarn ワークスペーススタイルのモノリポジトリで構成されている場合はこのフィールドが必要になるかもしれません。