Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
msg-middle-manage
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
张超
msg-middle-manage
Commits
8f396e34
提交
8f396e34
authored
4月 04, 2023
作者:
ziwencao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
build: build更新.
上级
bc543f9e
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
74 行增加
和
53 行删除
+74
-53
.env
.env
+20
-2
.env.dev
.env.dev
+12
-12
.env.pre
.env.pre
+3
-3
.env.prod
.env.prod
+11
-10
.env.test
.env.test
+3
-2
components.d.ts
components.d.ts
+0
-1
package-lock.json
package-lock.json
+0
-0
package.json
package.json
+6
-4
tailwind.config.js
tailwind.config.js
+19
-19
没有找到文件。
.env
浏览文件 @
8f396e34
# 默认标题
VITE_APP_TITLE=TEST_VUE3_VITE
\ No newline at end of file
VITE_APP_TITLE=诚联信-消息中台
# 开发环境
NODE_ENV=dev
# 接口请求地址
#VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/
VITE_APP_BASE_URL=https://api.clxkj.cn:8088/
# VITE_APP_BASE_URL=https://papi.clxkj.cn:8088/
# 静态资源地址
# VITE_APP_STATIC_URL=https://clx-dev.oss-cn-beijing.aliyuncs.com
VITE_APP_STATIC_URL=https://clx-prod.oss-cn-beijing.aliyuncs.com
# VITE_APP_STATIC_URL=https://img.91msl.com
# 构建资源公共路径
VITE_PUBLIC_PATH=https://127.0.0.1:5173
\ No newline at end of file
.env.dev
elopment
→
.env.dev
浏览文件 @
8f396e34
# 开发环境
NODE_ENV=development
# 接口请求地址
VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/
# 静态资源地址
VITE_APP_STATIC_URL=http://clx-dev.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=/
\ No newline at end of file
# 开发环境
NODE_ENV=dev
# 接口请求地址
VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/
# 静态资源地址
VITE_APP_STATIC_URL=https://clx-dev.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=
\ No newline at end of file
.env.pre
浏览文件 @
8f396e34
...
...
@@ -5,7 +5,7 @@ NODE_ENV=pre
VITE_APP_BASE_URL=https://papi.clxkj.cn:8088/
# 静态资源地址
VITE_APP_STATIC_URL=http
://clx-dev
.oss-cn-beijing.aliyuncs.com
VITE_APP_STATIC_URL=http
s://clx-prod
.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=/
\ No newline at end of file
VITE_PUBLIC_PATH=
\ No newline at end of file
.env.prod
uction
→
.env.prod
浏览文件 @
8f396e34
# 生产环境
NODE_ENV=prod
uction
# 接口请求地址
VITE_APP_BASE_URL=https://api1.91msl.com:8088/
# 静态资源地址
VITE_APP_STATIC_URL=http
://clx-prod.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
# 生产环境
NODE_ENV=prod
# 接口请求地址
VITE_APP_BASE_URL=https://api1.91msl.com:8088/
# 静态资源地址
VITE_APP_STATIC_URL=http
s://clx-prod.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=/
\ No newline at end of file
.env.test
浏览文件 @
8f396e34
...
...
@@ -4,8 +4,8 @@ NODE_ENV=test
# 接口请求地址
VITE_APP_BASE_URL
=
https
://
api
.
clxkj
.
cn
:
8088
/
# 静态资源地址
VITE_APP_STATIC_URL
=
http
://
clx
-
dev
.
oss
-
cn
-
beijing
.
aliyuncs
.
com
# 静态资源地址
http版http://clx-dev.oss-cn-beijing.aliyuncs.com
VITE_APP_STATIC_URL
=
http
s
://
clx
-
dev
.
oss
-
cn
-
beijing
.
aliyuncs
.
com
# 构建资源公共路径
VITE_PUBLIC_PATH
=/
\ No newline at end of file
components.d.ts
浏览文件 @
8f396e34
...
...
@@ -8,7 +8,6 @@ export {}
declare
module
'@vue/runtime-core'
{
export
interface
GlobalComponents
{
ElAside
:
typeof
import
(
'element-plus/es'
)[
'ElAside'
]
ElButton
:
typeof
import
(
'element-plus/es'
)[
'ElButton'
]
ElContainer
:
typeof
import
(
'element-plus/es'
)[
'ElContainer'
]
ElHeader
:
typeof
import
(
'element-plus/es'
)[
'ElHeader'
]
ElMain
:
typeof
import
(
'element-plus/es'
)[
'ElMain'
]
...
...
package-lock.json
0 → 100644
浏览文件 @
8f396e34
This source diff could not be displayed because it is too large. You can
view the blob
instead.
package.json
浏览文件 @
8f396e34
...
...
@@ -3,16 +3,18 @@
"version"
:
"0.0.0"
,
"scripts"
:
{
"dev"
:
"vite"
,
"test"
:
"vite --mode test"
,
"pre"
:
"vite --mode pre"
,
"build"
:
"run-p type-check build-only"
,
"preview"
:
"vite preview --port 4173"
,
"test:unit"
:
"vitest --environment jsdom"
,
"test:e2e"
:
"start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'"
,
"test:e2e:ci"
:
"start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'"
,
"build-only"
:
"vite build"
,
"build
-t
est"
:
"run-p type-check && vite build --mode test"
,
"build
-p
re"
:
"run-p type-check && vite build --mode pre"
,
"build
-production"
:
"run-p type-check && vite build --mode production
"
,
"build
-development"
:
"run-p type-check && vite build --mode development
"
,
"build
T
est"
:
"run-p type-check && vite build --mode test"
,
"build
P
re"
:
"run-p type-check && vite build --mode pre"
,
"build
Prod"
:
"run-p type-check && vite build --mode prod
"
,
"build
Dev"
:
"run-p type-check && vite build --mode dev
"
,
"type-check"
:
"vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
,
"lint"
:
"eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
...
...
tailwind.config.js
浏览文件 @
8f396e34
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module
.
exports
=
{
mode
:
"jit"
,
content
:
[
"index.html"
,
"./src/**/*.{js,jsx,ts,tsx,vue,html}"
],
darkMode
:
"media"
,
// or 'media' or 'class'
theme
:
{
extend
:
{},
backgroundColor
:
(
theme
)
=>
({
...
theme
(
"colors"
),
orange
:
"#ea5529"
,
}),
textColor
:
(
theme
)
=>
({
...
theme
(
"colors"
),
orange
:
"#ea5529"
,
}),
},
plugins
:
[],
};
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module
.
exports
=
{
mode
:
"jit"
,
content
:
[
"index.html"
,
"./src/**/*.{js,jsx,ts,tsx,vue,html}"
],
darkMode
:
"media"
,
// or 'media' or 'class'
theme
:
{
extend
:
{},
backgroundColor
:
(
theme
)
=>
({
...
theme
(
"colors"
),
orange
:
"#ea5529"
,
}),
textColor
:
(
theme
)
=>
({
...
theme
(
"colors"
),
orange
:
"#ea5529"
,
}),
},
plugins
:
[],
};
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论