超有效的解決方案:Failed to load resource: the server responded with a status of 404 (Not Found)

Posted Dream丶Killer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了超有效的解決方案:Failed to load resource: the server responded with a status of 404 (Not Found)相关的知识,希望对你有一定的参考价值。

Failed to load resource: the server responded with a status of 404 (Not Found)

问题描述:

nextjs项目里想要引入图片,地址都是对的,但是最后报404错误

解决办法:

1、在项目根目录添加一个static文件夹,在static中创建一个images文件夹,将图片放在images文件夹中。


2、引入方式

<img src="/static/images/bg.jpg" alt="bgImage" />

3、安装url-loader

yarn add url-loader

4、在next.config.js文件写入相应配置

module.exports = {
    webpack: (config) => {
        config.module.rules.push({
            test: [/\\.bmp$/, /\\.gif$/, /\\.jpe?g$/, /\\.png$/],
            loader: require.resolve("url-loader"),
            options: {
              limit: 10000,
              name: "static/media/[name].[hash:8].[ext]",
            },
        
        });
        return config;
    }
}

❤运行项目,图片引入成功!开森~❤

在这里插入图片描述

以上是关于超有效的解決方案:Failed to load resource: the server responded with a status of 404 (Not Found)的主要内容,如果未能解决你的问题,请参考以下文章

關於php接ICBC的支付接口的解決方案

failed to load resource怎么解决?

常见Failed to load ApplicationContext异常解决方案!!

关于怎样解决eclipse打开时出现的Failed to load the JNIshared library亲测有效

學校 iPad 使用學校google帳號登入Google Drive 提示"裝置政策提醒"的解決方法

OpenProj打开不了或者提示”Failed to load Java VM Library”的错误的解决方案