From 0e624794d9bcdd14ecee7b6718524586fd23559b Mon Sep 17 00:00:00 2001 From: Fay Szvest Date: Sat, 9 Jun 2018 02:32:30 +0000 Subject: [PATCH] Bulma sass error Fix - 'postcss-custom-properties': false - https://github.com/nuxt/nuxt.js/issues/1670#issuecomment-330078867 --- nuxt.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nuxt.config.js b/nuxt.config.js index acaca6c..a582880 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -66,6 +66,11 @@ module.exports = { exclude: /(node_modules)/ }) } + }, + postcss: { + plugins: { + 'postcss-custom-properties': false + } } } }