在 webpack 中加载 .otf 字体文件的正确方法是什么?
What's the correct way to load .otf font files in webpack?
使用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 文件添加另一个 rule/case,但我总是收到以下错误:
Module parse failed: .../fonts/[name-of-my-font].otf Unexpected character '
' (1:4) You may need an appropriate loader to handle this file type.
我在我的根目录的 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'
})
]
};
我加了
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
loader: "file-loader"
}
给我的 webpack.config.js。
我想我需要明确 link 文件加载器的类型。我使用的是默认的 VS2017 Angular 项目。
在我的 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 文件中。您或许可以将样式组件内容移动到单独的 .js 文件中,然后将其导入。
使用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 文件添加另一个 rule/case,但我总是收到以下错误:
Module parse failed: .../fonts/[name-of-my-font].otf Unexpected character ' ' (1:4) You may need an appropriate loader to handle this file type.
我在我的根目录的 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'
})
]
};
我加了
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
loader: "file-loader"
}
给我的 webpack.config.js。 我想我需要明确 link 文件加载器的类型。我使用的是默认的 VS2017 Angular 项目。
在我的 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 文件中。您或许可以将样式组件内容移动到单独的 .js 文件中,然后将其导入。