From fdc6716df4ec0870e31a17729df1542f3ce4d9ab Mon Sep 17 00:00:00 2001 From: Alexander Lichter Date: Sun, 11 Mar 2018 17:20:39 +0100 Subject: [PATCH] Whitelist nuxt-progress class for progress bar (#2995) * Whitelist nuxt-progress class for progress bar * Fix linting issue --- examples/with-purgecss/nuxt.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-purgecss/nuxt.config.js b/examples/with-purgecss/nuxt.config.js index 7ae7f5faa6..91a2ba93ea 100644 --- a/examples/with-purgecss/nuxt.config.js +++ b/examples/with-purgecss/nuxt.config.js @@ -31,7 +31,7 @@ module.exports = { extensions: ['vue'] } ], - whitelist: ['html', 'body'] + whitelist: ['html', 'body', 'nuxt-progress'] }) ) }