| | |
| | | declare module '*.vue' { |
| | | import { DefineComponent } from 'vue'; |
| | | const component: DefineComponent<{}, {}, any>; |
| | | export default component; |
| | | const Component: DefineComponent<{}, {}, any>; |
| | | export default Component; |
| | | } |
| | | |
| | | declare module '*.avif' { |
| | | const src: string; |
| | | export default src; |
| | |
| | | VITE_APP_BASE_URL: string; |
| | | VITE_APP_CONTEXT_PATH: string; |
| | | VITE_APP_MONITRO_ADMIN: string; |
| | | VITE_APP_XXL_JOB_ADMIN: string; |
| | | VITE_APP_POWERJOB_ADMIN: string; |
| | | VITE_APP_ENV: string; |
| | | VITE_APP_RSA_PUBLIC_KEY: string; |
| | | VITE_APP_RSA_PRIVATE_KEY: string; |
| | | VITE_APP_CLIENT_ID: string; |
| | | VITE_APP_WEBSOCKET: string; |
| | | } |
| | | interface ImportMeta { |
| | | readonly env: ImportMetaEnv; |