[Vuejs]-Nuxt & Internet Explorer

0👍

Basic:
Install autoprefixer and postcss in your project to add all required prefix.

Source:
From there is source: https://cmty.app/nuxt/nuxt.js/issues/c3

Solution as I understand:
Add to proper place in nuxt.config.js and update nuxt to be greater than v0.6.7:

module.exports = {
  build: {
    postcss: [
      require('postcss-nested')(),
      require('postcss-responsive-type')(),
      require('postcss-hexrgba')(),
    ]
  }

Is there error when you try, to add something, in your webpack/nuxt configuration file?

Leave a comment