UNPKG

422 BJavaScriptView Raw
1// ## Migrate from 1.1 to 1.2
2
3// ### Changes
4
5// 1. ⛔ `autoprefixer` was removed from stack, it is to handle in project scope
6// 2. ⛔ `cssnano` was removed from default template, it is to handle in project scope
7// 3. ⛔ `postcss.config.js` was removed from stack, it is to handle in project scope
8
9module.exports = {
10 plugins: [
11 require('postcss-windicss')({
12 touchMode: 'insert-comment',
13 }),
14 ],
15};