使用webpack時加載.otf字體文件的適當方式是什麼?我曾多次嘗試包括在我的webpack.config.js
的規則,沒有任何成功的基礎上,很多例子我大致如下的線路看出:對於在webpack中加載.otf字體文件的正確方法是什麼?
{ 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'}
]
},
//...
}
儘管我的各種嘗試添加另一個規則/案例雜項文件的文件,我總是得到以下錯誤:
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
的雜項文件文件,並在我的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'
})
]
};
你可以從你的webpack配置中分享你完整的'module.loaders'嗎? – Bulkan
@Bulkan我已經修改了我的問題,在最後包含了我完整的'webpack.config.js'。這有幫助嗎? – user3145115
你確定你已經安裝了url-loader和file-loader? –