Add frontend developer guide describing the path alias architecture (#5964)

# Description of Changes
Add frontend developer guide describing the path alias architecture.
There's probably more needed in here which we should flesh out over
time, but this is a start.
This commit is contained in:
James Brunton
2026-03-23 10:16:52 +00:00
committed by GitHub
parent b012f18a40
commit 57c810ab9a
2 changed files with 70 additions and 0 deletions
+2
View File
@@ -55,6 +55,8 @@ Development for the AI engine happens in the `engine/` folder. It's built with L
#### Import Paths - CRITICAL
**ALWAYS use `@app/*` for imports.** Do not use `@core/*` or `@proprietary/*` unless explicitly wrapping/extending a lower layer implementation.
For a broader explanation of the frontend layering and override architecture, see [frontend/DeveloperGuide.md](frontend/DeveloperGuide.md).
```typescript
// ✅ CORRECT - Use @app/* for all imports
import { AppLayout } from "@app/components/AppLayout";