0

我已导入"glyphicons-halflings": "1.9.0",其中不包含实际字体。因此,字体相对于我的应用程序存储在app/assets/fonts.

我正在处理这样的错误:

ERROR in ./~/css-loader?sourceMap!./~/resolve-url-loader!./~/sass-loader?sourceMap!./app/scss/application.scss
Module not found: Error: Cannot resolve 'file' or 'directory' ../fonts/glyphicons-halflings-regular.eot in C:\work\myapp\src\MyApp.Web\app\scss
@ ./~/css-loader?sourceMap!./~/resolve-url-loader!./~/sass-loader?sourceMap!./app/scss/application.scss 6:168498-168550 6:168573-168625

对我来说,这似乎定义的 urlnode_modules/glyphicons-halflings/scss/glyphicons-halflings/_glyphicons-halflings.scss没有被正确覆盖

_glyphicons-halflings.scss定义

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),
       url('../fonts/glyphicons-halflings-regular.woff') format('woff'),
       url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),
       url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

我自己的app/scss/_font.scss定义

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../assets/fonts/glyphicons/glyphicons-halflings-regular.eot');
    src: url('../assets/fonts/glyphicons/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
         url('../assets/fonts/glyphicons/glyphicons-halflings-regular.woff2') format('woff2'),
         url('../assets/fonts/glyphicons/glyphicons-halflings-regular.woff') format('woff'),
         url('../assets/fonts/glyphicons/glyphicons-halflings-regular.ttf') format('truetype'),
         url('../assets/fonts/glyphicons/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

这两者之间的唯一区别是网址。我定义了_font.scss(或者更确切地说,application.scss)的相对路径,但是 webpack 无法解析glyphicons-halflings模块中定义的 url。

这两个文件都导入到app/scss/application.scss

@import "variables";
@import "mixins";
@import "~bootstrap/scss/bootstrap";
@import "~font-awesome/scss/font-awesome";
@import "~glyphicons-halflings/scss/glyphicons-halflings";
@import "bootstrap-override";
@import "libs-override";

@import "font";

我已经像这样设置了 webpack: webpack.common.js

module: {
    loaders: [
        {
            test: /\.ts$/,
            include: helpers.root('app'),
            loaders: ['awesome-typescript-loader', 'angular2-template-loader']
        },
        {
            test: /\.html$/, // mostly angular templates
            include: helpers.root('app'),
            loader: 'html'
        },
        {
            test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)(\?|$)/,
            include: helpers.root('app'),
            loader: 'file?name=[path][name].[hash].[ext]'             
        },
        {
            test: /\.scss$/,
            include: helpers.root('app'),
            loaders: ['style', 'css?sourceMap', 'resolve-url', 'sass?sourceMap']
        },
        {
            test: /\.css$/,
            include: helpers.root('app'),
            loader: 'to-string!css!resolve-url'
        }
    ]
},

作为参考,我的文件夹结构是这样的:

+-- app
|    +-- assets
|        +-- fonts
|            +-- font-awesome
|                +-- FontAwesome.otf
|                +-- ...
|            +-- glyphicons
|                +-- ...
|            +-- ...
|        +-- icon
|            +-- ...
|        +-- ...
|   +-- sass
|       +-- _font.css
|       +-- application.scss
|       +-- ...
|   +-- ...
+-- appdist (later for server-side, if ever)
+-- node_modules
+-- ...
+-- wwwroot
    +-- dist
        +-- ...webpack bundled content goes here...

TL;DRglyphicons-halflings1.9.0 定义了一个@font-face我无法覆盖的内容(因为 url 错误)。所有 SASS、webpack 加载器管道都是'style', 'css?sourceMap', 'resolve-url', 'sass?sourceMap'

4

1 回答 1

0

我已经停止使用该glyphicons-halflings软件包。相反,我复制了我自己的代码旁边的内容并更改了路径。

我的猜测是 webpack 会分别sass-loader评估每个require(…)- 并且glyphicions-halflings包没有通过评估。

于 2016-11-08T07:44:08.040 回答