html5 - Why does post-css not automatically add the browser prefix to css3 attributes when using vue cli scaffolding?
过去多啦不再A梦2017-05-16 13:36:14
0
3
1299
1. Why is the browser prefix not automatically added to css3 attributes when using the scaffolding on the vuejs official website? For example: transform: tralaste(50%, 0); does not add -webkit, -moz and other browser prefixes
You are saying that the prefix is not added to you in the dev stage. The autoprefixer is not configured in the dev stage, but it is in the build stage. In fact, there is no need to enable autoprefixer in the dev stage. Won't the compilation be slower (albeit slightly slower) during development? It is enough to enable the prefix for the current browser
You are saying that the prefix is not added to you in the dev stage. The autoprefixer is not configured in the dev stage, but it is in the build stage.
In fact, there is no need to enable autoprefixer in the dev stage. Won't the compilation be slower (albeit slightly slower) during development? It is enough to enable the prefix for the current browser
Create new postcss.config.js
Configure autoprefixer
Solved, configure in webpack.base.config.js