新增 CLAUDE.md 文件以提供项目指导,添加 .claudeignore 文件以排除不必要的文件,更新 pom.xml 版本至 3.9.2,修复多个路径遍历和 SQL 注入漏洞,优化字典翻译切面逻辑,增强文件上传和下载的安全性,新增音频文件类型支持,改进动态数据源的安全校验。
This commit is contained in:
2
jeecgboot-vue3/types/global.d.ts
vendored
2
jeecgboot-vue3/types/global.d.ts
vendored
@@ -65,6 +65,8 @@ declare global {
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_ENTRY?: string;
|
||||
// 当前运行在什么平台
|
||||
VITE_GLOB_RUN_PLATFORM?: 'web' | 'electron';
|
||||
// iconify图标使用在线还是本地。可选属性:online, local
|
||||
VITE_GLOB_ICONIFY_USE_TYPE?: 'online' | 'local';
|
||||
}
|
||||
|
||||
declare function parseInt(s: string | number, radix?: number): number;
|
||||
|
||||
10
jeecgboot-vue3/types/unplugin-icons.d.ts
vendored
Normal file
10
jeecgboot-vue3/types/unplugin-icons.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* unplugin-icons 类型声明
|
||||
* 为 ~icons 路径提供类型支持
|
||||
*/
|
||||
|
||||
declare module '~icons/*' {
|
||||
import { FunctionalComponent, SVGAttributes } from 'vue';
|
||||
const component: FunctionalComponent<SVGAttributes>;
|
||||
export default component;
|
||||
}
|
||||
Reference in New Issue
Block a user