@aion0/forge 0.3.2 → 0.3.3

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.
@@ -12,7 +12,7 @@ export default function LoginPage() {
12
12
 
13
13
  useEffect(() => {
14
14
  const host = window.location.hostname;
15
- setIsRemote(!['localhost', '127.0.0.1'].includes(host));
15
+ setIsRemote(host.endsWith('.trycloudflare.com'));
16
16
  // Restore theme
17
17
  const saved = localStorage.getItem('forge-theme');
18
18
  if (saved === 'light') document.documentElement.setAttribute('data-theme', 'light');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion0/forge",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
5
5
  "type": "module",
6
6
  "scripts": {