当我在Next Js中打开localhost:3000时,它会自动转到'http://localhost:3000/public/index'并显示404错误

unftdfkk  于 2023-11-18  发布在  其他
关注(0)|答案(1)|浏览(224)

我在pages文件夹中也没有任何公共文件夹。我在pages文件夹中直接有index.js文件。仍然当我启动服务器localhost:3000/时,它会自动转到http://localhost:3000/public/index并显示404错误。这是我的文件夹结构。


的数据
下面是我的next.js.js文件:

const nextConfig = {
      reactStrictMode: false,
      webpack: (config) => {
        config.module.rules.push({
          test: /\.(mp4|webm|mov)$/, // Add any other video file extensions you want to support
          use: {
            loader: "file-loader",
             options: {
              publicPath: "/_next/static/videos/",
              outputPath: "static/videos/",
              name: "[name].[ext]",
            },
          },
         });

        return config;
      },
      output: 'export',
      images: {
        unoptimized: true,
      },
    };

    module.exports = nextConfig;

字符串
我已经试着回到我的最后一次提交。仍然存在的问题,即使当我做了我的最后一次提交,问题并不存在。

mwkjh3gx

mwkjh3gx1#

这个错误的答案,是你需要删除谷歌或任何浏览器的该高速缓存你使用.
您可以在显示屏右上角的当地历史中找到它。

相关问题