From b2cba244b175e4d851c884103a096683b4e8e263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Tue, 27 Dec 2016 15:24:52 +0100 Subject: [PATCH] update extend config --- test/fixtures/with-config/nuxt.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/fixtures/with-config/nuxt.config.js b/test/fixtures/with-config/nuxt.config.js index d323084807..23500c15d0 100644 --- a/test/fixtures/with-config/nuxt.config.js +++ b/test/fixtures/with-config/nuxt.config.js @@ -10,7 +10,9 @@ module.exports = { num: 23, string: 'Nuxt.js' }, - extend (config, options) { - config.devtool = 'eval-source-map' + build: { + extend (config, options) { + config.devtool = 'nosources-source-map' + } } }