Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Your root application

The src/ folder is the base folder for your project. This is where you will work.

Please consider this folder as the root of your application.

The advantage of considering the src folder as the base of your application is that you can structure it as you see fit.

It can be interesting to look at design patterns, here are some of them :

Please use the factory make:file command to create a file quickly

Import with alias

To simplify the import of your files, the alias App/ is available. This alias refers to the root folder src/.

Example:

- import Foo from '../../../Foo'
+ import Foo from 'App/Folder/Foo'