-
PostCSS插件postcss-import-url实现远程文件内联功能
资源介绍
postcss-import-url
插件可以内联远程文件。
/* Input example */
@import 'https://fonts.googleapis.com/css?family=Tangerine' ;
body {
font-size : 13 px ;
}
/* Output example */
@font-face {
font-family : 'Tangerine' ;
font-style : normal;
font-weight : 400 ;
src : url (https://fonts.gstatic.com/s/tangerine/v12/IurY6Y5j_oScZZow4VOxCZZM.woff2) format ( 'woff2' );
}
body {
font-size : 13