This commit is contained in:
duanhao 2025-07-17 10:00:23 +08:00
commit 189df98632
1386 changed files with 66305 additions and 0 deletions

1
.env.development Normal file
View File

@ -0,0 +1 @@
VITE_APP_BASE_API = "/api"

1
.env.production Normal file
View File

@ -0,0 +1 @@
VITE_APP_BASE_API = "http://127.0.0.1:3000/api"

24
.gitignore vendored Normal file
View File

@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

9
.prettierignore Normal file
View File

@ -0,0 +1,9 @@
/dist/*
.local
.output.js
/node_modules/**
**/*.svg
**/*.sh
/public/*

9
.prettierrc Normal file
View File

@ -0,0 +1,9 @@
{
"semi": true,
"singleQuote": false,
"printWidth":100,
"trailingComma": "none",
"tabWidth": 2,
"endOfLine": "auto",
"arrowParens": "always"
}

4
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"recommendations": ["Vue.volar"],
}

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
#指定对应版本镜像
FROM nginx:1.25.3
# 该镜像维护者信息
LABEL maintainer="su"
# 将本地 dist 文件夹中的内容复制到容器中的 /usr/local/nginx/html/ 目录下
COPY dist/ /usr/local/nginx/html/
# 将本地 nginx.conf 文件复制到容器中的 /etc/nginx/nginx.conf 路径
COPY nginx.conf /etc/nginx/nginx.conf
# 构建镜像时执行的命令
RUN echo 'echo init ok'

5
Readme.md Normal file
View File

@ -0,0 +1,5 @@
# Vue 3 + Vite
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
Learn more about IDE Support for Vue in the [Vue Docs Scaling up Guide](https://vuejs.org/guide/scaling-up/tooling.html#ide-support).

BIN
anchor.tar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More