Note: There are still some follow-up tasks in ARCH-308 for analytics, i18n, etc. This gets the base functionality in place. ARCH-308
8 lines
169 B
JavaScript
8 lines
169 B
JavaScript
/* I'm here to allow autoprefixing in webpack.prod.config.js */
|
|
module.exports = {
|
|
plugins: [
|
|
require('autoprefixer')({ grid: true, browsers: ['>1%'] }),
|
|
],
|
|
};
|
|
|