我在我的项目中使用 rsuite。我刚刚开始尝试使用 Vite 来编译我们的开发版本。Vite 会在样式表规则中引用的所有 url 前面加上开发服务器的主机名。例如,我的 node_modules 目录中的样式表具有以下规则:
@font-face {
font-family: 'rsuite-icon-font';
src: url('https://cdn.jsdelivr.net/npm/rsuite/dist/styles/fonts/rsuite-icon-font.ttf') format('truetype'), url('https://cdn.jsdelivr.net/npm/rsuite/dist/styles/fonts/rsuite-icon-font.woff') format('woff');
font-weight: normal;
font-style: normal;
}
Vite 将其变为:
http://localhost:8080/node_modules/rsuite/lib/styles/https://cdn.jsdelivr.net/npm/rsuite/dist/styles/fonts/rsuite-icon-font.woff
没有办法避免将开发服务器的主机连接到 CDN 交付的资产。
有人做过吗?