Level 9
In the webpack.mix.js file you can do this
mix.options({
postCss: [
require('autoprefixer')({
browsers: ['last 2 versions'],
cascade: false
})
]
});
2 likes
Is there a way to change the autoprefixer options in Laravel Mix? There use to be in Elixir.
In the webpack.mix.js file you can do this
mix.options({
postCss: [
require('autoprefixer')({
browsers: ['last 2 versions'],
cascade: false
})
]
});
Please or to participate in this conversation.