8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
/* I'm here to allow autoprefixing in webpack.prod.config.js */
|
|
module.exports = {
|
|
plugins: [
|
|
require('autoprefixer')({ grid: 'autoplace', overrideBrowserslist: ['>1%'] }),
|
|
],
|
|
};
|
|
|