chore: 移除 frontend/docs 和 frontend/app 的开源内容,保留空目录

- 从 Git 跟踪中移除 frontend/docs 和 frontend/app 的所有文件
- 保留 .gitkeep 文件以维持目录结构
- 更新 .gitignore 配置
- 本地文件完整保留,仅从远程仓库移除
This commit is contained in:
zhangtao
2026-05-17 21:08:14 +08:00
parent ea1cd52a87
commit 887cbaaf42
255 changed files with 0 additions and 61383 deletions
-54
View File
@@ -1,54 +0,0 @@
/*
* @Author: weisheng
* @Date: 2025-06-23 22:23:05
* @LastEditTime: 2025-06-27 13:04:54
* @LastEditors: weisheng
* @Description:
* @FilePath: /wot-starter/pages.config.ts
* 记得注释
*/
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
export default defineUniPages({
pages: [],
globalStyle: {
// 导航栏配置
navigationBarBackgroundColor: '@navBgColor',
navigationBarTextStyle: '@navTxtStyle',
navigationBarTitleText: 'Wot Starter',
// 页面背景配置
backgroundColor: '@bgColor',
backgroundTextStyle: '@bgTxtStyle',
backgroundColorTop: '@bgColorTop',
backgroundColorBottom: '@bgColorBottom',
// 下拉刷新配置
enablePullDownRefresh: false,
onReachBottomDistance: 50,
// 动画配置
animationType: 'pop-in',
animationDuration: 300,
},
tabBar: {
custom: true,
// #ifdef MP-ALIPAY
customize: true,
// 暂时不生效。4.71.2025061206-alpha已修复:https://uniapp.dcloud.net.cn/release-note-alpha.html#_4-71-2025061206-alpha,我们等正式版发布后更新。
overlay: true,
// #endif
height: '0',
color: '@tabColor',
selectedColor: '@tabSelectedColor',
backgroundColor: '@tabBgColor',
borderStyle: '@tabBorderStyle',
list: [{
pagePath: 'pages/index/index',
}, {
pagePath: 'pages/work/index',
}, {
pagePath: 'pages/mine/index',
}],
},
})