Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Dir Structure

Aniket Prajapati edited this page Jun 12, 2020 · 2 revisions

FireJS projects usually look something like this.

Project    
└─── out                 
│   └─── dist             
│   |    └─── lib           
│   |        └─── map   
|   └─── .cache
|   |
|   └─── .fly
|   
└─── src    
│   └─── pages        
│       │   index.js      
│       │   about.js
│       │   404.js          
│       │   ...    
│    
│   └─── plugins          
│       │   example.js    
│       │   ...
│
│   └─── static
│       │   example.png
|
| firejs.yml 

Don't like it? No problem, change it effortlessly using firejs.yml file or if you are in a hurry change them using the command line interface.

A Quick Explanation

The src dir is the place where you'll put the bits and pieces of your website.

🏡 Home

Getting Started
Advance
Tips and Tricks

🗒️ All examples in this documentation are written in typescript

Clone this wiki locally