登录 注册
当前位置:主页 > 资源下载 > 33 > PostCSS插件postcss-import-url实现远程文件内联功能

PostCSS插件postcss-import-url实现远程文件内联功能

  • 更新:2024-12-08 18:02:50
  • 大小:14KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

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