166afac18a
Das Modul-Export machte die Version-Deklaration unsichtbar und brach den Docker-Frontend-Build. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
357 B
TypeScript
18 lines
357 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-plugin-pwa/react" />
|
|
|
|
declare module '*?raw' {
|
|
const content: string
|
|
export default content
|
|
}
|
|
|
|
declare global {
|
|
const __APP_VERSION__: string
|
|
|
|
interface Window {
|
|
plausible?: (event: string, options?: { props?: Record<string, string | number | boolean> }) => void
|
|
}
|
|
}
|
|
|
|
export {}
|