misc: remove unused cache config (#3490)

This commit is contained in:
Clark Du 2018-07-01 20:10:44 +01:00 committed by Pooya Parsa
parent d9d2d9e8de
commit 749da85b90
2 changed files with 0 additions and 2 deletions

View File

@ -16,7 +16,6 @@ export default {
// Dirs // Dirs
buildDir: '.nuxt', buildDir: '.nuxt',
cacheDir: '.cache',
nuxtDir, nuxtDir,
nuxtAppDir: path.resolve(nuxtDir, 'lib', 'app'), nuxtAppDir: path.resolve(nuxtDir, 'lib', 'app'),
modulesDir: ['node_modules'], // ~> relative to options.rootDir modulesDir: ['node_modules'], // ~> relative to options.rootDir

View File

@ -60,7 +60,6 @@ Options.from = function (_options) {
? path.resolve(options.rootDir, options.srcDir) ? path.resolve(options.rootDir, options.srcDir)
: options.rootDir : options.rootDir
options.buildDir = path.resolve(options.rootDir, options.buildDir) options.buildDir = path.resolve(options.rootDir, options.buildDir)
options.cacheDir = path.resolve(options.rootDir, options.cacheDir)
// Populate modulesDir // Populate modulesDir
options.modulesDir = [] options.modulesDir = []