Resolve no postcss config found error

Geeks, please accept the hero post of 2021 Microsoft x Intel hacking contest>>>

Create a new postcss.config.js file in the root directory of the project, and configure the postcss. Edit the content:

module.exports = {
    plugins: {
        'autoprefixer': {browsers: 'last 5 version'}
    }
}

Then NPM run dev runs successfully

Similar Posts: