Files
wuhan-saga/client/env.d.ts
王文昊 3daa0273a4 feat(news): 支持新闻中心多站点隔离功能
新增站点编码配置,支持新闻分类与文章按站点隔离。主要变更包括:
- 数据库表增加 site_code 字段及索引
- 后台管理界面支持按站点筛选
- 前台接口支持通过查询参数或请求头指定站点
- 新增站点配置与解析逻辑
2026-05-05 15:09:49 +08:00

12 lines
257 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_PORTAL_SITE_CODE?: string
}
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}