πFolder Structure
In Angular, the directory structure is designed to provide a flexible and customizable framework for your project. You have the freedom to adapt the directory structure to your specific needs, making it easy to organize and manage your application. Whether you prefer a traditional Angular module/component layout or have a specific project structure in mind, Angular's directory structure is versatile, allowing you to pick a structure that suits your project and make adjustments as needed. This adaptability ensures that your development experience is efficient and tailored to your unique requirements.
Light_able
βββ π Public
βββ π src
β βββ π App
β βββ π Component
β βββ π data
β βββ π Enum
β βββ π layouts
β βββ π models
β βββ π pages
β βββ π service
β βββ app.component.css
β βββ app.component.html
β βββ app.component.spec.ts
β βββ app.component.ts
β βββ app.config.server.ts
β βββ app.config.ts
β βββ app.routes.ts
β βββ πassets
β βββ π css
β βββ π fonts
β βββ π images
β βββ π js
β βββ π json
β βββ index.html
β βββ main.server.ts
β βββ main.ts
β βββ styles.css
βββ .editorconfig
βββ .gitignore
βββ angular.json
βββ package.json
βββ README.md
βββ server.ts
βββ tsconfig.app.json
βββ tsconfig.json
βββ tsconfig.spec.jsonLast updated