本文介绍了vue js 中的 process.env.BASE_URL 是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我使用 vue cli 安装 vue 时手动选择预设时.我偶然发现了 process.env.BASE_URL.我试图在互联网上找到它,但无济于事,我找不到任何像样的解释.这是代码.

When I manually selected presets when installing vue using vue cli. I stumbled upon process.env.BASE_URL. I was tryng to find it in the internet but to no avail, I can't find any decent explanation.Here's the code.

const router = new VueRouter({
  mode: 'history',
  base: process.env.BASE_URL,
  routes
})

推荐答案

文档在这里https://cli.vuejs.org/guide/mode-and-env.html#environment-variables

它有一个级联文件系统,可以确定您的应用程序的环境变量.主文件是 .env

It has a system of cascading files that will determine enviroment variables for your app. The main file being a .env

BASE_URL 是半任意的,如果需要,您可以引入自己的 BASE_ROUTER_URL 变量

The BASE_URL is semi arbitary, you could introduce your own BASE_ROUTER_URL variable if you wanted

这篇关于vue js 中的 process.env.BASE_URL 是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 22:11