@playcademy/vite-plugin 0.2.34-beta.1 → 0.2.34-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,9 +4,9 @@
4
4
  import type { ProxyOptions } from 'vite';
5
5
  export interface ProxyConfig {
6
6
  '/api'?: string | ProxyOptions;
7
+ '/__playcademy'?: string | ProxyOptions;
7
8
  }
8
9
  /**
9
- * Create proxy configuration for backend API
10
- * Auto-configures /api proxy to route requests to the backend server
10
+ * Create proxy configuration for backend API and reserved runtime routes.
11
11
  */
12
12
  export declare function createProxyConfig(existingProxy: Record<string, string | ProxyOptions>, backendPort: number): Record<string, string | ProxyOptions>;