[Study] autoprefixer / postcss

productuidev·2022년 1월 24일
0

FE Study

목록 보기
15/67
post-thumbnail

autoprefixer

https://github.com/postcss/autoprefixer

postcss

https://hkreal.tistory.com/3

package.json

"devDependencies" : {
	"autoprefixer": "^10.2.5",
	"parcel-bundler": "^1.12.5",
	"parcel-plugin-static-files-copy": "^2.6.0",
	"postcss": "^8.2.8",
	"sass": "^1.32.8"
},
"staticFiles": {
	"staticPath": "static"
},
"browserslist": [
	"> 1%",
	"last 2 versions"
]
}

autoprefixer와 postcss가 버전이 같아야 충돌나지 않음 (호환성)

.postcssrc.js

// ESM (ECMA Script Module)
// CommonJS (Node.js에서는 CommonJS 방식을 사용한다)

// import autoprefixer from 'autoprefixer'
const autoprefixer = require('autoprefixer')

// export { plugins: [ autoprefixer ] }
module.exports = {
	plugins: [ autoprefixer ]
}

//간소화

module.exports = {
	plugins: [
		require('autoprefixer')	
	]
}
profile
필요한 내용을 공부하고 저장합니다.

0개의 댓글