vue2和vue3部署到服务器子目录为空白页

问题:今天遇到vue项目部署到服务器默认hash没问题但是hhistory为空白的问题。研究了一下找到了答案记录一下

vue项目history模式部署在子路径

项目打包后默认只能部署在服务器根路径,如果想 http://www.xxx.com/demo/ 这种形式

vue3+vite配置方法

  • 在 vite.config.ts 中配置:

export default defineConfig(({ command }) => {
    return {
        // 在这里增加 base 写子路径
        base: '/demo/',  
        resolve: { /*......省略*/ }

    };
});

  • 然后在router 中增加:

import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'


const router = createRouter({
   // 给 createWebHistory 方法传参数配置子路径
  history: createWebHistory(import.meta.env.BASE_URL),
  routes: [
    {
      path: '/',
      name: 'home',
      component: HomeView
    },
  ]
})

export default router

vue2+cli配置方法

在 vue.config.ts 中配置:
// vue.config.js
const vueConfig = {
// 在这里增加 publicPath写子路径
 publicPath:'/demo/'

 //......忽略其他
}

module.exports = vueConfig

然后在router 中增加:

export default new Router({
  mode: 'history',
  // 增加bese信息 
  base: process.env.BASE_URL,
  scrollBehavior: () => ({ y: 0 }),
  routes
})

vue项目hash模式部署在任意路径

vue3+vite配置方法

  • 把 vite.config.ts 中的 base 配置值为空或者 ./ :
// ......省略其它代码
export default defineConfig(({ command }) => {
    return {
        base: '',
        //base: './',
    };
});
  • 把 src/router/index.ts 中路由 history 模式改为 hash 模式:
import { createRouter, createWebHashHistory } from 'vue-router';

// ......省略其它代码
const router = createRouter({
    routes,
    history: createWebHashHistory()
});

vue2+vueCli配置方法

  • 在 vue.config.ts 中配置为空或者 ./
// vue.config.js
const vueConfig = {
// 在这里增加 publicPath写子路径
 publicPath:'./'

 //......忽略其他
}

module.exports = vueConfig

然后在router 中设置hash:

export default new Router({
  mode: 'hash',
  scrollBehavior: () => ({ y: 0 }),
  routes
})

相关推荐

  1. vue2vue3部署服务器子目录空白

    2024-03-15 11:42:04       49 阅读
  2. vue2vue3 部署打包线上子目录的区别

    2024-03-15 11:42:04       59 阅读
  3. vue2vue3

    2024-03-15 11:42:04       37 阅读
  4. vue2vue3的区别

    2024-03-15 11:42:04       56 阅读
  5. Vue3Vue2的区别

    2024-03-15 11:42:04       51 阅读
  6. Vue2Vue3的区别

    2024-03-15 11:42:04       62 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-15 11:42:04       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-15 11:42:04       106 阅读
  3. 在Django里面运行非项目文件

    2024-03-15 11:42:04       87 阅读
  4. Python语言-面向对象

    2024-03-15 11:42:04       96 阅读

热门阅读

  1. 消息队列&中间件

    2024-03-15 11:42:04       46 阅读
  2. 12 Python多进程

    2024-03-15 11:42:04       38 阅读
  3. Python Django相关解答

    2024-03-15 11:42:04       39 阅读
  4. CF899F Letters Removing 题解

    2024-03-15 11:42:04       40 阅读
  5. android11 申请所有文件访问权限

    2024-03-15 11:42:04       31 阅读
  6. MongoDB 中的锁分析

    2024-03-15 11:42:04       33 阅读