nuxt2发布出现的问题

在nuxt2进行打包的时候,遇到图标不出现

解决办法

  • 第一步:在nuxt2中nuxt.conifg.jd中使用srcDir: 'src/',把所有文件放在src下面, nuxt.config.js
js 复制代码
import path from 'path'
export default {
  // Global page headers: https://go.nuxtjs.dev/config-head
  head: {
    title: 'e',
    htmlAttrs: {
      lang: 'en'
    },
    meta: [
      { charset: 'utf-8' },
      { name: 'viewport', content: 'width=device-width, initial-scale=1' },
      { hid: 'description', name: 'description', content: '' },
      { name: 'format-detection', content: 'telephone=no' }
    ],
    link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
  },

  // Global CSS: https://go.nuxtjs.dev/config-css
  css: ['element-ui/lib/theme-chalk/index.css'],
  srcDir: 'src/',
  alias: {
    '@': path.resolve(__dirname, './src/'),
    '~': path.resolve(__dirname, './src/')
  },
  // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
  plugins: ['@/plugins/element-ui'],

  // Auto import components: https://go.nuxtjs.dev/config-components
  components: true,

  // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
  buildModules: [
    // https://go.nuxtjs.dev/eslint
    '@nuxtjs/eslint-module'
  ],

  // Modules: https://go.nuxtjs.dev/config-modules
  modules: [
    // https://go.nuxtjs.dev/axios
    '@nuxtjs/axios'
  ],

  // Axios module configuration: https://go.nuxtjs.dev/config-axios
  axios: {
    // Workaround to avoid enforcing hard-coded localhost:3000: https://github.com/nuxt-community/axios-module/issues/308
    baseURL: '/'
  },

  // Build Configuration: https://go.nuxtjs.dev/config-build
  build: {
    transpile: [/^element-ui/]
    // publicPath: '/assets/'
  }
}

目录结构

  • 第二步:这个时候进行打包发布,会找不到link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],

  • 第三步:在上传文件到服器的时候,需要上传以下几个文件

上传到服务器就是这样,static这个文件必须放在src下面

  • 第四步:接下来就可以直接yarn,然后yarn start,就可以访问到了(前提是已经配置好了nginx进行转发,进行转发的时候,不要忘记配置服务器端口)
相关推荐
ohyeah5 分钟前
柯理化(Currying):让函数参数一个一个传递
前端·javascript
岁月宁静26 分钟前
AI 多模态全栈项目实战:Vue3 + Node 打造 TTS+ASR 全家桶!
vue.js·人工智能·node.js
9坐会得自创32 分钟前
使用marked将markdown渲染成HTML的基本操作
java·前端·html
Hilaku33 分钟前
当 Gemini 3 能写出完美 CSS 时,前端工程师剩下的核心竞争力是什么?
前端·javascript·ai编程
最贪吃的虎1 小时前
什么是开源?小白如何快速学会开源协作流程并参与项目
java·前端·后端·开源
裴嘉靖1 小时前
Vue + ECharts 实现图表导出为图片功能详解
前端·vue.js·echarts
用泥种荷花1 小时前
【LangChain学习笔记】输出解析器
前端
闲云一鹤1 小时前
Cesium 使用 Turf 实现坐标点移动(偏移)
前端·gis·cesium
Thomas游戏开发2 小时前
Unity3D IL2CPP如何调用Burst
前端·后端·架构