You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
599 B
30 lines
599 B
const title = process.env.VUE_APP_TITLE;
|
|
const description = process.env.VUE_APP_DESCRIPTION;
|
|
const baseUrl = process.env.VUE_APP_BASE_URL;
|
|
const apiUrl = process.env.VUE_APP_API_URL;
|
|
const proxyUrl = process.env.VUE_APP_PROXY_URL;
|
|
const publicPath = process.env.VUE_APP_PUBLIC_PATH;
|
|
const msgUrl = process.env.VUE_APP_MSG_URL;
|
|
|
|
module.exports = {
|
|
// 首页标题
|
|
title,
|
|
|
|
// 首页描述信息
|
|
description,
|
|
|
|
// 基础地址
|
|
baseUrl,
|
|
|
|
// api基础地址
|
|
apiUrl,
|
|
|
|
// 消息系统地址
|
|
msgUrl,
|
|
|
|
// api代理地址
|
|
proxyUrl,
|
|
|
|
// 生成文件目录 publicPath
|
|
publicPath,
|
|
};
|
|
|