nuxt 构建与生成
我不确定什么时候用什么。
使用 nuxt build
你会得到两个目录(client
& server
),这意味着你实际上正在部署node.js服务器(即express,对吧? )
使用 nuxtgenerate
你会得到 .html
看来这两种方式你都可以拥有 nuxt 所追求的良好 SEO。对我来说,nuxt生成选项似乎更简洁,因为它不涉及服务器。
我在这里缺少什么?为什么我应该使用 nuxt build 并混合服务器代码?
I'm not sure when to use what.
with nuxt build
you get two directories(client
& server
) that means you are actually deploying node.js server(i.e. express, right?)
with nuxt generate
you get .html
It seems both ways you can have good SEO which nuxt aims at. And to me, nuxt generate
option seems more consize since it doesn't envolve server.
What am I missing here? Why should I use nuxt build
and get server code mixed up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在文档中显示:
https://nuxtjs.org/docs/get-started/commands/
nuxt build
:使用 webpack 构建您的应用程序并缩小 JS 和 JS 代码。 CSS(用于生产)。nuxtgenerate
:构建应用程序并将每个路由生成为 HTML 文件(用于静态托管)。乔什
This is shown in the docs here:
https://nuxtjs.org/docs/get-started/commands/
nuxt build
: Build your application with webpack and minify the JS & CSS (for production).nuxt generate
: Build the application and generate every route as a HTML file (used for static hosting).Josh