我有一个带有旧版本nextjs
的静态文件夹。我将nextjs
更新为使用public
文件夹。
"next": "^9.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
这是我的nextjs
配置:
const withPlugins = require('next-compose-plugins');
const withCss = require('@zeit/next-css');
const withSass = require('@zeit/next-sass');
const withImages = require('next-images');
require('dotenv').config();
const withSourceMaps = require('@zeit/next-source-maps')();
if (typeof require !== 'undefined') {
// eslint-disable-next-line no-unused-vars
require.extensions['.css'] = file => {};
}
const nextConfig = {
env: {
BUILD_ENV: process.env.BUILD_ENV,
},
webpack: (config, { isServer }) => {
if (!isServer) {
// eslint-disable-next-line no-param-reassign
config.resolve.alias['@sentry/node'] = '@sentry/browser';
}
if (isServer) {
const antStyles = /antd\/.*?\/style\/css.*?/;
const origExternals = [...config.externals];
config.externals = [ // eslint-disable-line
(context, request, callback) => { // eslint-disable-line
if (request.match(antStyles)) return callback();
if (typeof origExternals[0] === 'function') {
origExternals[0](context, request, callback);
} else {
callback();
}
},
...(typeof origExternals[0] === 'function' ? [] : origExternals),
];
config.module.rules.unshift({
test: antStyles,
use: 'null-loader',
});
}
return config;
},
};
module.exports = withPlugins(
[
[withImages],
[withCss],
[
withSass,
{
cssModules: true,
cssLoaderOptions: {
localIdentName: '[path]___[local]___[hash:base64:5]',
},
},
],
[withSourceMaps],
],
nextConfig,
);
刷新页面时,我所有的样式都是这样:
我有一个称为 [cat] 的动态页面,所以所有路径都类似于:
http://localhost:3030/cat/static/css/antd.min.css
您知道我该如何解决吗?
当我使用链接进行路由时,一切正常,但是当我刷新页面时,由于动态路由,找不到资产!
这是目录:
答案 0 :(得分:1)
我有一个类似的问题,我使用Next.js Dynamic Routes来捕获URL路径参数,但是CSS和JS资产无法加载,因为它是将路径添加到我的Layout资产上。即在您的示例中,它将在我资产的资源文件路径之前添加cat
。我的pages
看起来类似于:pages/cats/[something].js
我通过在资源路径中添加'/'来解决此问题
尝试更正头部/布局
来自:
<link rel="stylesheet" href="static/css/antd.min.css" />
收件人:
<link rel="stylesheet" href="/static/css/antd.min.css" />
这解决了我的CSS和JS在显示和提取正确资源路径链接方面的问题。