Project Structure
In this chapter, we will go through the structure of the Angular project from Nzoni boilerplate and give you an overview of how modules and components are structured.
├── node_modules
├── src
│ ├── app # Application logic
│ ├── assets
│ ├── environments # Environment variables
│ │ ├── environment.prod.ts # for production
│ │ ├── environment.ts # for local
│ ├── favicon.ico
│ ├── index.html
│ ├── main.server.ts. # SSR main file
│ ├── main.ts #
│ ├── robots.txt
│ ├── styles.scss # Styling
├── .gitignore
├── .editorconfig # WYSIWYG config
├── angular.json # Angular config
├── package.json
├── server.ts. # SSR logic
├── README.md
├── tailwind.config.ts # Tailwind configuration
├── tsconfig.json # TypeScript configuration
├── tsconfig.server.json # SSR tsonfig configuration
└── tsconfig.app.json # App tsconfig
Last updated