英文:
Deploying Nuxt.js and Nest.js together
问题
- Frontend SPA 应用是使用 Nuxt.js 2 编写的
- 后端 API 是为该 SPA 应用使用 Nest.js 编写的
我不确定是应该分开托管前端和后端,还是使用 Nest 的 Serve Static 模块。
在 Nest.js 中托管 SPA 更方便,但我不确定这是否是最佳做法。
英文:
I have
- Frontend SPA app written in Nuxt.js 2
- Backend API for that SPA written in Nest.js
I don't know if I should host Frontend and Backend separately or use Nest's Serve Static module.
Hosting SPA in Nest.js is more convenient but I'm not sure if it's the best practice
答案1
得分: 0
我建议分离前端和后端,它会更便宜,更容易管理/调试/组织,更适合给定的技术栈:性能、费用、价格。我不确定Nest如何能够提供任何静态内容,但上述观点仍然完全有效。
英文:
I recommend splitting the frontend and backend, it will be:
- cheaper
- simpler to manage/debug/organize yourself
- more suited to the given stack: performance, charge, price
I'm not sure how Nest is able to serve anything static but the points above are still totally valid.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论