nest next:用于Next.js的Nest模块 源码
用于Next.js的Nest模块 将与服务器一起使用。 为什么? 允许您在单个存储库中同时管理前端和后端。 并且您维护一个域example.com而不是两个: example.com和api.example.com 。 安装 yarn add @nest-module/next next react react-dom # Following typings are also needed yarn add @types/react @types/node --dev 用法 在src/app.module.ts : import { join } from 'path' import { NextModule } from '@nest-module/next' @ Module ( { imports : [ NextModule . register ( {
用户评论