大屏模块开发中
This commit is contained in:
parent
5eec8706a5
commit
05cec033e9
14
.env.sandbox
Normal file
14
.env.sandbox
Normal file
|
@ -0,0 +1,14 @@
|
|||
# 页面标题
|
||||
# VUE_APP_TITLE = 智慧党建系统
|
||||
|
||||
# 开发环境配置
|
||||
ENV = 'sandbox'
|
||||
|
||||
# 智慧党建系统/开发环境
|
||||
VUE_APP_BASE_API = 'http://1.119.152.230:4024/'
|
||||
|
||||
# 前端路径地址
|
||||
# VUE_APP_ROUTER_URL = 'http://1.119.152.230:4023'
|
||||
|
||||
# 路由懒加载
|
||||
# VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
15
.env.test
Normal file
15
.env.test
Normal file
|
@ -0,0 +1,15 @@
|
|||
# 页面标题
|
||||
# VUE_APP_TITLE = 智慧党建
|
||||
|
||||
# 测试环境配置
|
||||
ENV = 'test'
|
||||
|
||||
# 管理系统/测试环境
|
||||
VUE_APP_BASE_API = 'http://192.168.3.18:56000/'
|
||||
|
||||
# 应用访问路径 例如使用前缀 /admin/
|
||||
# VUE_APP_CONTEXT_PATH = '/'
|
||||
|
||||
|
||||
# 前端路径地址
|
||||
# VUE_APP_ROUTER_URL = 'http://192.168.3.18:55112'
|
|
@ -3,8 +3,9 @@
|
|||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"dev": "vue-cli-service serve",
|
||||
"build:test": "vue-cli-service build --mode test",
|
||||
"build:sandbox": "vue-cli-service build --mode sandbox",
|
||||
"lint": "vue-cli-service lint"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -4,6 +4,8 @@ module.exports = defineConfig({
|
|||
lintOnSave:false, //关闭eslint校验
|
||||
publicPath: '/',
|
||||
devServer: {
|
||||
host: '0.0.0.0',
|
||||
port: 8000,
|
||||
proxy: {
|
||||
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
||||
[process.env.VUE_APP_BASE_API]: {
|
||||
|
|
Loading…
Reference in New Issue
Block a user