【发布时间】:2021-06-02 00:35:18
【问题描述】:
我更新了 Encore webpack 及其依赖项。因为,我有这个错误:
错误:无法解决 '/fonts/Basier-Circle-medium-webfont/basiercircle-medium-webfont.woff' 在 'E:\Projets web\Roadtripr\roadtripr\assets\css' 在runMicrotasks()
字体文件位于public/fonts 目录中。
编辑:
有@font-face 声明:
/* Basier */
@font-face {
font-family: 'Basier';
src: url('/fonts/Basier-Circle-regular-webfont/basiercircle-regular-webfont.woff') format('woff'),
url('/fonts/Basier-Circle-regular-webfont/basiercircle-regular-webfont.woff2') format('woff2');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Basier';
src: url('/fonts/Basier-Circle-regular-webfont/basiercircle-regular-webfont.woff') format('woff'),
url('/fonts/Basier-Circle-regular-webfont/basiercircle-regular-webfont.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Basier';
src: url('/fonts/Basier-Circle-medium-webfont/basiercircle-medium-webfont.woff') format('woff'),
url('/fonts/Basier-Circle-medium-webfont/basiercircle-medium-webfont.woff2') format('woff2');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Basier';
src: url('/fonts/Basier-Circle-semibold-webfont/basiercircle-semibold-webfont.woff') format('woff'),
url('/fonts/Basier-Circle-semibold-webfont/basiercircle-semibold-webfont.woff2') format('woff2');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Basier';
src: url('/fonts/Basier-Circle-bold-webfont/basiercircle-bold-webfont.woff') format('woff'),
url('/fonts/Basier-Circle-bold-webfont/basiercircle-bold-webfont.woff2') format('woff2');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Basier';
src: url('/fonts/Basier-Circle-bold-webfont/basiercircle-bold-webfont.woff') format('woff'),
url('/fonts/Basier-Circle-bold-webfont/basiercircle-bold-webfont.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
【问题讨论】:
-
错误:无法解析 'E:\Projets web\Roadtripr\roadtripr\assets\css' 中的 '/fonts/Basier-Circle-regular-webfont/basiercircle-regular-webfont.woff2'在 runMicrotasks (
)
标签: symfony sass-loader webpack-encore