Webpack can't load fonts (ttf)

前端 未结 4 1586
心在旅途
心在旅途 2021-02-20 05:56

Currently I have 3 fonts that I want to add to my React project:a, a light, a bold.
My file structure:

/src
├── /fonts/
│   ├── /A.ttf
│   ├── /A-         


        
4条回答
  •  野性不改
    2021-02-20 06:23

    As of webpack 5 you can use built-in asset modules instead. From the guide here, add this to module.rules to load .ttf files:

    {
      test: /\.(woff|woff2|eot|ttf|otf)$/i,
      type: 'asset/resource',
    },
    
    

提交回复
热议问题