我在gh页上托管了react / webpack应用。 Favicon和Manifest图标未显示。
图标,清单文件夹和manifest.webmanifest文件位于客户端/资产文件夹中。
<网站图标设置>,
导入'./assets/favicons/favicon.ico';
test: /\.(jpe?g|png|gif|ico)$/, loader: 'file-loader', options: { name: devMode ? '[name].[ext]' : '[name].[hash].[ext]', }, new HTMLWebpackPlugin({ template: './public/index.html', favicon: './client/assets/favicons/favicon.ico', }),
<链接rel =“ apple-touch-icon” size =“ 76x76” href =“ / apple-touch-icon.png” />
<清单设置>
[版本] 我添加了CopyWebpackPlugin来将清单文件夹和manifest.json复制到dist文件夹。现在Manifest.json文件有效。但该图标仍未显示在主屏幕上。
webpack.base.js
const webpack = require('webpack');
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const autoprefixer = require('autoprefixer');
const HTMLWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const NODE_ENV = process.env.NODE_ENV;
const devMode = NODE_ENV !== 'production';
const isTest = NODE_ENV === 'test';
const babelConfig = require('./.babelrc.js');
module.exports = {
output: {
filename: devMode ? 'bundle.js' : 'bundle.[hash].js',
chunkFilename: devMode
? '[name].lazy-chunk.js'
: '[name].lazy-chunk.[hash].js',
path: path.resolve(__dirname, 'public/dist'),
publicPath: '/',
},
resolve: { extensions: ['.js', '.jsx', '.json'] },
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: [
{
loader: 'babel-loader',
options: babelConfig,
},
],
},
{
test: /\.(sa|sc|c)ss$/,
exclude: /node_modules/,
use: [
{
loader: devMode ? 'style-loader' : MiniCssExtractPlugin.loader,
},
{
loader: 'css-loader',
options: {
sourceMap: true,
importLoaders: 1,
},
},
{
loader: 'postcss-loader',
options: {
indent: 'postcss',
plugins: [
autoprefixer({
browsers: 'last 2 versions',
}),
],
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
includePaths: ['client/styles/main.scss'],
},
},
],
},
{
test: /\.html$/,
loader: 'html-loader',
options: {
attrs: ['img:src'],
},
},
{
test: /\.(jpe?g|png|gif|ico)$/,
loader: 'file-loader',
options: {
name: devMode ? '[name].[ext]' : '[name].[hash].[ext]',
},
},
{
test: /\.svg$/,
loader: 'file-loader',
options: {
name: devMode ? '[name].[ext]' : '[name].[hash].[ext]',
},
},
],
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10,
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true,
},
},
},
},
plugins: [
new CleanWebpackPlugin(['public/dist']),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(NODE_ENV),
},
}),
new HTMLWebpackPlugin({
template: './public/index.html',
favicon: './static/favicons/favicon.ico',
}),
new MiniCssExtractPlugin({
filename: devMode ? '[name].css' : '[name].[chunkhash].css',
chunkFilename: devMode ? '[id].css' : '[id].[chunkhash].css',
}),
new CaseSensitivePathsPlugin(),
new CopyWebpackPlugin([
{ from: `${__dirname}/static`, to: `${__dirname}/public/dist` },
]),
isTest
? new BundleAnalyzerPlugin({
generateStatsFile: true,
})
: null,
].filter(Boolean),
};
webpack.prod.js
const merge = require('webpack-merge');
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const cssnano = require('cssnano');
const TerserPlugin = require('terser-webpack-plugin');
const BrotliPlugin = require('brotli-webpack-plugin');
const baseConfig = require('./webpack.base');
const config = {
mode: 'production',
entry: './client/index.js',
devtool: 'source-map',
optimization: {
minimize: true,
minimizer: [
new OptimizeCssAssetsPlugin({
assetNameRegExp: /\.optimize\.css$/g,
cssProcessor: cssnano,
cssProcessorOptions: {
discardComments: { removeAll: true },
},
canPrint: true,
}),
new TerserPlugin({
test: /\.js(\?.*)?$/i,
exclude: /node_modules/,
terserOptions: {
ecma: 6,
compress: true,
output: {
comments: false,
beautify: false,
},
},
}),
],
runtimeChunk: {
name: 'manifest',
},
},
plugins: [new BrotliPlugin()],
};
module.exports = merge(config, baseConfig);
答案 0 :(得分:0)
如果要在浏览器上显示图标。请尝试在index.html
中执行此操作<link rel="shortcut icon" href="%PUBLIC_URL%/assets/favicons/favicon.ico">