Init 1
This commit is contained in:
commit
4e67004628
82 changed files with 7599 additions and 0 deletions
19
postcss.config.js
Normal file
19
postcss.config.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
const url = require('postcss-url')
|
||||
const imports = require('postcss-import')
|
||||
const nested = require('postcss-nested')
|
||||
const stripComments = require('postcss-strip-inline-comments')
|
||||
const postCSSPresetEnv = require('postcss-preset-env')
|
||||
const browsers = require('browserslist')
|
||||
|
||||
module.exports = () => ({
|
||||
plugins: [
|
||||
stripComments,
|
||||
url,
|
||||
imports,
|
||||
nested,
|
||||
postCSSPresetEnv({
|
||||
stage: 1,
|
||||
browsers: 'last 2 versions',
|
||||
})
|
||||
]
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue