Skip to content

Project Structure

Learn about the default aincraft project structure and what each file does.

my-aincraft-project/
├── src/
│ ├── components/
│ ├── pages/
│ └── styles/
├── public/
├── aincraft.config.js
└── package.json

Contains all your source code.

Static assets that will be served as-is.

Configuration file for your aincraft project.

You can customize the project structure to fit your needs.

  • Keep your components organized
  • Use meaningful file names
  • Separate concerns properly