vue3 vite 打包 iconfont 引入问题 Ignoring remote @import

使用vue3,用vite 进行build,iconfont没有打包进去
写法如下
@import '//at.alicdn.com/t/******.css';

[vite] warnings when minifying css:

build时警告

  'Ignoring remote @import of "//at.alicdn.com/t/******.css" 
as no callback given and after other content.'

改为在index.html 使用link引入

 

或者下载到本地 使用本地文件引入

@import './******.css';

你可能感兴趣的:(vue3 vite 打包 iconfont 引入问题 Ignoring remote @import)