- Updated the app to support light and dark themes with appropriate CSS classes. - Enhanced PWA configuration with manifest details and caching strategies. - Improved the chat UI with dynamic theme adjustments for various components. - Added new meta tags for better mobile web app experience. - Refactored environment variables to include new Anthropic token. - Updated package dependencies for better compatibility and performance. Made-with: Cursor
22 lines
560 B
TypeScript
22 lines
560 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<object, object, unknown>
|
|
export default component
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_OPENROUTER_API_KEY: string
|
|
readonly VITE_ANTHROPIC_API_KEY: string
|
|
readonly VITE_ANTHROPIC_TOKEN: string
|
|
readonly VITE_TMDB_API_KEY: string
|
|
readonly VITE_DEV_MODE: string
|
|
readonly VITE_MOCK_MEDIA_SOURCES: string
|
|
readonly VITE_DISABLE_CRYPTO: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|