Skip to content

Commit 4f7fe0b

Browse files
committed
chore: initial commit - vue-vben-admin-antd v5.5.9
基于 Vue Vben Admin v5.5.9 独立拆分的 Ant Design Vue 版本单页应用(SPA) 完全脱离 monorepo 依赖,可独立部署和发布
0 parents  commit 4f7fe0b

File tree

1,219 files changed

+107211
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,219 files changed

+107211
-0
lines changed

.browserslistrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 1%
2+
last 2 versions
3+
not dead
4+
not ie 11

.changeset/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works with multi-package repos, or single-package repos to help you version and publish your code. You can find the full documentation for it [in our repository](https://github.com/changesets/changesets)
4+
5+
We have a quick list of common questions to get you started engaging with this project in [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{
6+
"repo": "Ducr/vue-vben-admin-antd"
7+
}
8+
],
9+
"commit": false,
10+
"fixed": [
11+
[
12+
"@vben-core/*",
13+
"@vben/*"
14+
]
15+
],
16+
"snapshot": {
17+
"prereleaseTemplate": "{tag}-{datetime}"
18+
},
19+
"privatePackages": {
20+
"version": true,
21+
"tag": true
22+
},
23+
"linked": [],
24+
"access": "public",
25+
"baseBranch": "main",
26+
"updateInternalDependencies": "patch",
27+
"ignore": []
28+
}

.commitlintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from '@vben/commitlint-config';

.dockerignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
.git
3+
.gitignore
4+
*.md
5+
dist
6+
.turbo
7+
dist.zip

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
charset=utf-8
5+
end_of_line=lf
6+
insert_final_newline=true
7+
indent_style=space
8+
indent_size=2
9+
max_line_length = 100
10+
trim_trailing_whitespace = true
11+
quote_type = single
12+
13+
[*.{yml,yaml,json}]
14+
indent_style = space
15+
indent_size = 2
16+
17+
[*.md]
18+
trim_trailing_whitespace = false

.env

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 应用标题
2+
VITE_APP_TITLE=Vben Admin Antd
3+
4+
# 应用命名空间,用于缓存、store等功能的前缀,确保隔离
5+
VITE_APP_NAMESPACE=vben-web-antd
6+
7+
# 对store进行加密的密钥,在将store持久化到localStorage时会使用该密钥进行加密
8+
VITE_APP_STORE_SECURE_KEY=please-replace-me-with-your-own-key

.env.analyze

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# public path
2+
VITE_BASE=/
3+
4+
# Basic interface address SPA
5+
VITE_GLOB_API_URL=/api
6+
7+
VITE_VISUALIZER=true

.env.development

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# 端口号
2+
VITE_PORT=5666
3+
4+
VITE_BASE=/
5+
6+
# 接口地址
7+
VITE_GLOB_API_URL=/api
8+
9+
# 是否开启 Nitro Mock服务,true 为开启,false 为关闭
10+
VITE_NITRO_MOCK=true
11+
12+
# 是否打开 devtools,true 为打开,false 为关闭
13+
VITE_DEVTOOLS=false
14+
15+
# 是否注入全局loading
16+
VITE_INJECT_APP_LOADING=true

.env.production

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
VITE_BASE=/
2+
3+
# 接口地址
4+
VITE_GLOB_API_URL=https://mock-napi.vben.pro/api
5+
6+
# 是否开启压缩,可以设置为 none, brotli, gzip
7+
VITE_COMPRESS=none
8+
9+
# 是否开启 PWA
10+
VITE_PWA=false
11+
12+
# vue-router 的模式
13+
VITE_ROUTER_HISTORY=hash
14+
15+
# 是否注入全局loading
16+
VITE_INJECT_APP_LOADING=true
17+
18+
# 打包后是否生成dist.zip
19+
VITE_ARCHIVER=true

0 commit comments

Comments
 (0)