diff options
Diffstat (limited to 'vnext/postcss.config.js')
-rw-r--r-- | vnext/postcss.config.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/vnext/postcss.config.js b/vnext/postcss.config.js deleted file mode 100644 index d5ff5a25..00000000 --- a/vnext/postcss.config.js +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = (ctx) => { - const production = ctx.env === 'production'; - const config = { - map: production ? false : ctx.options.map, - plugins: { - 'autoprefixer': { grid: true }, - 'stylelint': production ? false : {}, - 'postcss-import': {}, - 'postcss-preset-env': { stage: 0 }, - 'cssnano': production ? { preset: 'default' } : false, - 'postcss-url' : { url: 'copy', assetsPath: '', useHash: true } - }, - }; - return config; -}; - |