Skip to content
  • This project
    • Loading...
  • Sign in

templates / pkg-template

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • pkg-template
  • boilerplate
  • postcss.config.js
  • McLemore's avatar
    init commit · c1d788a4
    c1d788a4
    McLemore committed 2018-11-17 15:37:33 +0800
postcss.config.js 317 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
module.exports = {
  plugins: [
    require('autoprefixer')({
      browsers: [
        'last 2 versions',
        'Firefox ESR',
        '> 1%',
        'ie >= 8',
        'iOS >= 8',
        'Android >= 4'
      ]
    }),
    require('postcss-pxtorem')({
      rootValue: 37.5,
      propWhiteList: []
    })
  ]
}