我有问题,使用webpack加载图像,我有ThreeJS项目,我想添加一些图像到它,但它不工作,它显示为 * 哈希 *.png在源选项卡中,但错误,也在网站上它就像我从来没有导入过它,我的webpack配置:
const CopyWebpackPlugin = require("copy-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCSSExtractPlugin = require("mini-css-extract-plugin");
const path = require("path");
module.exports = {
entry: path.resolve(__dirname, "../src/script.js"),
output: {
filename: "bundle.[contenthash].js",
path: path.resolve(__dirname, "../dist"),
},
devtool: "source-map",
plugins: [
new CopyWebpackPlugin({
patterns: [{ from: path.resolve(__dirname, "../static") }],
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "../src/index.html"),
minify: true,
}),
new MiniCSSExtractPlugin(),
],
module: {
rules: [
// HTML
{
test: /\.(html)$/,
use: ["html-loader"],
},
// JS
{
test: /\.js$/,
exclude: /node_modules/,
use: ["babel-loader"],
},
// CSS
{
test: /\.css$/,
use: [MiniCSSExtractPlugin.loader, "css-loader"],
},
// Images
{
test: /\.(jpg|png|gif|svg)$/,
use: [
{
loader: "file-loader?name=[name].[ext]",
options: {
outputPath: "assets/images/",
},
},
],
},
// Fonts
{
test: /\.(ttf|eot|woff|woff2)$/,
use: [
{
loader: "file-loader",
options: {
outputPath: "assets/fonts/",
},
},
],
},
{
test: /\.(jpg|png)$/,
use: {
loader: "url-loader",
},
},
],
},
};
我试着从internert的一些答案,但没有一个工作。
2条答案
按热度按时间y53ybaqx1#
如果你用的是webpack5,你应该用webpack 5 asset modules替换文件加载器,原始加载器和网址加载器。
lf5gs5x22#
看起来你有两个规则来处理你的webpack配置中的图像。第一个是使用文件加载器来输出图像到assets/images/目录,而第二个是使用url加载器。
试着删除第二条使用url-loader处理图像的规则,并且只使用文件加载器来加载图像。
此外,请确保您的ThreeJS项目中的图像路径是相对于您的webpack配置中指定的输出目录(../dist),并且您在JavaScript代码中正确导入了图像(例如,从“./path/to/image.png”导入图像)。