From c026131558cdfd02d62d6d60bf494e93fd2d5285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Tue, 27 Dec 2016 15:04:42 +0100 Subject: [PATCH] Add test for extend option --- test/fixtures/with-config/nuxt.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/fixtures/with-config/nuxt.config.js b/test/fixtures/with-config/nuxt.config.js index 862863d8d1..d323084807 100644 --- a/test/fixtures/with-config/nuxt.config.js +++ b/test/fixtures/with-config/nuxt.config.js @@ -9,5 +9,8 @@ module.exports = { bool: true, num: 23, string: 'Nuxt.js' + }, + extend (config, options) { + config.devtool = 'eval-source-map' } }