NextJS FAQ
pathname vs asPath
path | pathname | asPath |
---|---|---|
/ | / | / |
/user/123 | /user/[id] | /user/123 |
/user/123#top | /user/[id] | /user/123#top |
- asPath 真实路径
- pathname NextJS 的文件路径
server vs serverless
- server
- 打包为整个应用
- 支持自定义 server
- 支持长链接 - websocket
- 建议使用
- serverless
- 不会构建一体化应用
- 页面独立 - 服务与页面不耦合
- 页面与服务分离后更容易部署
- 但依然是需要 next 来运行 - #4496
- vercel 默认模式
- 参考
next.config.ts
next.config.js
require('ts-node').register(require('./tsconfig.json'));
module.exports = require('./next.config.ts');
next.config.js 类型提示
/** @type {import('next').NextConfig} */
module.exports = {};
Prop className did not match
nextjs 12 后需要配置 compiler
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compiler: {
// 添加
styledComponents: true,
},
};
module.exports = nextConfig;
使用单一的 API 来处理所有接口
yarn add polka cors body-parser
import polka from 'polka';
import cors from 'cors';
import { json, text, urlencoded } from 'body-parser';
let _router;
export function getRouter() {
return _router || (_router = routes(setup(polka())));
}
function setup(route) {
// treat path params as query - same as how next api handle this
route.use((req, res, next) => {
if (req.params) {
const q = req.query;
for (const [k, v] of Object.entries(req.params)) {
if (!q[k]) {
q[k] = v;
}
}
}
return next();
});
return route;
}
export function routes(r: any) {
const route = r as Router<NextApiRequest, NextApiResponse>;
// handle error
route.use(async (req, res, next) => {
try {
return await next();
} catch (e) {
const detail = normalizeError(e);
res.status(detail.status).json(detail);
console.error(`ERROR Handle ${req.url}`, e);
}
});
route.use(json());
route.use(urlencoded({ extended: true }));
route.use(text());
const corsOrigin = cors({ origin: true });
// cors
route.get('/api/cors', corsOrigin as any, (req, res) => res.json({}));
// path params
route.get('/api/user/:id', corsOrigin as any, (req, res) => res.json({ id: req.query.id }));
return route;
}
export function handleRequest(req, res) {
getRouter().handler(req, res);
}
export default handleRequest;
export const config = {
api: {
bodyParser: false,
},
};
Critical dependency: the request of a dependency is an expression
构建为 serverless 时可能出现
禁用 minification
export default {
productionBrowserSourceMaps: true,
webpack(config) {
config.optimization.minimize = false;
config.optimization.minimizer = [];
return config;
},
};
css 顺序不一致
将 app 导入的 css 抽取放到一个 css 文件进行导入
@import '~normalize.css/normalize.css';
@import '[email protected]/icons/lib/css/blueprint-icons.css';
@import '[email protected]/core/lib/css/blueprint.css';
@import '[email protected]/select/lib/css/blueprint-select.css';
@import '[email protected]/datetime/lib/css/blueprint-datetime.css';
@import '[email protected]/popover2/lib/css/blueprint-popover2.css';
@import '[email protected]/table/lib/css/table.css';
@import '~tailwindcss/tailwind.css';
@import '~nprogress/nprogress.css';
确保 tailwind 覆盖 blueprintjs 样式
- 开启 webpack5 该方式无效
- #16630
访问 public 里的 index.html
module.export = {
async rewrites() {
return {
fallback: [
{
source: '/:path*',
destination: '/:path*/index.html',
},
],
};
},
};
Lockfile was successfully patched, please run "npm install" to ensure @next/swc dependencies are downloaded
outputStandalone
- 非常适用于 docker 环境
- 只需要 .next/standalone 不需要 node_modules
module.exports = {
experimental: {
outputStandalone: true,
// monorepo 需要调整 root
outputFileTracingRoot: path.join(__dirname, '../../'),
},
};
FROM node:16-alpine
WORKDIR /app
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
# monorepo need prefix path
COPY next.config.js ./apps/web/
COPY public ./apps/web/public
COPY package.json ./apps/web/package.json
COPY --chown=nextjs:nodejs .next/standalone ./
COPY --chown=nextjs:nodejs .next/static ./apps/web/.next/static
USER nextjs
EXPOSE 3000
ENV PORT 3000
# monorepo
CMD ["node", "apps/web/server.js"]
- 由于 hosting 的原因,可能出现模块无法找到的问题
- pnpm 重复 build 会有问题
- 基于 @vercel/nft 跟踪依赖
- https://nextjs.org/docs/advanced-features/output-file-tracing#automatically-copying-traced-files-experimental
dynamic preload
- dyanmic 不会预加载 - prefetch
- 使用 @loadable/component