6

使用 webpack 时加载 .otf 字体文件的适当方法是什么?webpack.config.js根据我看到的许多示例,我已经多次尝试在我的 .

{ test: /\.(eot|svg|ttf|otf|woff)$/, use: 'file-loader' }
//or
{ test: /\.(eot|svg|ttf|otf|woff)$/, use: 'url-loader' }
//or
{ test: /\.(ttf|eot|svg|woff(2)?)(\?[a-z0-9=&.]+)?$/, use: 'file-loader' }
//...etc

webpack.config.js我已经为其他文件类型设置了以下内容,这些文件类型可以成功运行:

module.exports = {
    //...
      module: {
        rules: [
          { test: /\.(js)$/, use: 'babel-loader' },
          { test: /\.css$/, use: [ 'style-loader', 'css-loader' ]},
          { test: /\.(jpe?g|png|gif|svg|xml)$/i, use: 'file-loader'}
        ]
      },
    //...
}

尽管我多次尝试为 .otf 文件添加另一个规则/案例,但我总是收到以下错误:

模块解析失败:.../fonts/[name-of-my-font].otf 意外字符 ' ' (1:4) 您可能需要适当的加载程序来处理此文件类型。

我已经fonts在我的根目录的一个文件夹中添加了 .otf 文件,并且在我的 index.css 中我有:

@font-face {
  font-family: 'name-of-my-font';
  src: url('fonts/name-of-my-font.otf'),
  format('opentype');
}

有没有人遇到过类似的问题并找到了解决方案?

谢谢,奥斯汀

根据对我的更多文件的评论请求webpack.config.js,这是我的全部内容webpack.config.js

var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
  entry: './app/index.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'index_bundle.js',
    publicPath: '/'
  },
  module: {
    rules: [
      { test: /\.(js)$/, use: 'babel-loader' },
      { test: /\.css$/, use: [ 'style-loader', 'css-loader' ]},
      { test: /\.(jpe?g|png|gif|svg|xml)$/i, use: 'file-loader' }
    ]
  },
  devServer: {
    historyApiFallback: true,
  },
  plugins: [
    new HtmlWebpackPlugin({
      template: 'app/index.html'
    })
  ]
};
4

2 回答 2

11

我添加了

  {    
    test: /\.(woff|woff2|eot|ttf|otf)$/,
    loader: "file-loader"
  }

到我的 webpack.config.js。我想我需要明确地将类型链接到文件加载器。我使用的是默认的 VS2017 Angular 项目。

于 2017-10-19T04:14:57.297 回答
0

在我的webpack.config.js 中,我有:

{
  test: /\.(woff|woff2|eot|ttf|otf)$/,
  use: "file-loader"
}

然后在我的index.js文件中,我有:

import React from 'react';
import ReactDOM from 'react-dom';

import { injectGlobal } from 'styled-components';
import avenir from '../font/AvenirLTStd-Light.otf';
injectGlobal`
    @font-face {
        font-family: 'Avenir';
        src: url(${avenir}) format('opentype');
        font-weight: normal;
        font-style: normal;
    }

    * {
        font-family: 'Avenir', sans-serif;
    }
`;

import App from './components/App';

ReactDOM.render(
  <App />
  , document.querySelector('#root')
);

使用 styled-components 库中的 injectGlobal 帮助器会自动将样式注入到您的 css 文件中。您可能可以将 styled-components 内容移动到单独的 .js 文件中,然后将其导入。

于 2017-12-19T02:04:04.760 回答