diff --git a/lib/builder/webpack/postcss.js b/lib/builder/webpack/postcss.js index a9c3674c46..aa348e1db6 100644 --- a/lib/builder/webpack/postcss.js +++ b/lib/builder/webpack/postcss.js @@ -1,7 +1,6 @@ const { existsSync } = require('fs') const { resolve } = require('path') const { cloneDeep } = require('lodash') -const debug = require('debug')('nuxt:postcss') const { isPureObject } = require('../../common/utils') module.exports = function postcssConfig() { @@ -18,7 +17,6 @@ module.exports = function postcssConfig() { for (let file of ['postcss.config.js', '.postcssrc.js', '.postcssrc', '.postcssrc.json', '.postcssrc.yaml']) { if (existsSync(resolve(dir, file))) { const postcssConfigPath = resolve(dir, file) - debug(`Using config file: ${postcssConfigPath}`) return { sourceMap: this.options.build.cssSourceMap, config: {