导入字体以使用 webpack 和样式组件对项目做出反应

cbu*_*ler 4 reactjs webpack-2 styled-components

我正在尝试从使用 webpack 和样式组件的 React 项目中的本地资源导入字体。我有一个包含以下代码的字体文件夹:

import { css } from 'styled-components';
import { fontWeight } from './vars';

export const fontFaces = css`
  @font-face {
    font-family: 'OurFont';
    src: url('/resources/fonts/OurFont-Bold.woff2') format('woff2');
    font-weight: ${fontWeight.bold};
    font-style: normal;
  }
`;
Run Code Online (Sandbox Code Playgroud)

然后我有一个全局样式文件:

import { createGlobalStyle } from 'styled-components';
import { fontFaces } from './fonts';

export const GlobalStyles = createGlobalStyle`
  ${fontFaces}
`;
Run Code Online (Sandbox Code Playgroud)

在我的应用程序组件中,我使用来自样式组件的 ThemeProvider 像这样(为了简洁起见,这里省略了一些不相关的代码):

import { ThemeProvider } from 'styled-components';

class App extends React.Component {
render() {
  return (
    <ThemeProvider theme={{ theme }}>
      <GlobalStyles />
      <AppHeader />
      <AppNavigator />       
    </ThemeProvider>
  );
}}
Run Code Online (Sandbox Code Playgroud)

以及来自 webpack 的相关代码:

module: {
  rules: [
    {
      test: /\.jsx?$/,
      exclude: /node_modules/,
      use: ['babel-loader'],
    },
    {
      test: /\.(eot|svg|ttf|woff|woff2|otf)$/,
      use: [
        {
          loader: 'file-loader',
          options: {
            name: '[name].[ext]',
            limit: 10000,
            mimetype: 'application/font-woff',
          },
        },
      ],
    },
Run Code Online (Sandbox Code Playgroud)

我尝试按照线程的建议进行操作,但它似乎对我不起作用,因为我在控制台中收到错误消息 GET http://localhost:5001/resources/fonts/OurFont-Bold.woff2 net::ERR_ABORTED 404 (未找到)。

有谁知道我做错了什么或者是否有另一种方法?谢谢!

Buz*_*nas 6

您可以通过在 JS 中导入字体并将其传递给样式化组件 css 模板标记来解决此问题:

import { css } from 'styled-components';
import { fontWeight } from './vars';

import myFontURL from '../../mypath/fonts/OurFont-Bold.woff2';

export const fontFaces = css`
  @font-face {
    font-family: 'OurFont';
    src: url(${myFontURL}) format('woff2');
    font-weight: ${fontWeight.bold};
    font-style: normal;
  }
`;
Run Code Online (Sandbox Code Playgroud)

确保不要使用/resources/fonts/OurFont-Bold.woff2,而是使用当前文件目录的相对路径。