1.打包上传:本地运行 npm run build 打包打包后上传 .nuxt static nuxt.config.js package.json package-lock.json 这5个文件/文件夹2.在服务器安装依赖并启动项目运行 npm i 安装依赖然后运行 npm run start 启动,如果可以正常启动说明部署成功3.pm2开启进程守护运行 pm2 start npm --name "您的进程名称" -- run start//注:这里您的进程名称就是package.json里的name配置项的名称运行pm2 list查看是否在进程列表里,至此就部署完成,联系后端配置ngix域名映射
一、页面TDK(标题、描述、关键词)设置全局设置配置nuxt.config.js文件export default { //... head: { htmlAttrs: { lang: 'en' }, meta: [ { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' }, ], link: [ { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } ] }, //... }在每个页面的配置//首页index.vue export default{ ...//其他代码块 head: { title: "网站标题",
修改nuxt.config.js文件 build: { // 将内嵌CSS样式提取到外部 extractCSS: { allChunks: true }, }
铅笔Naruto
前端攻城狮