Using the Assets Builder
The VTEX Assets Builder is responsible for  handling assets  within Store Theme  blocks and CSS classes by getting all asset paths used and uploading them in the  File Manager  service.
As its name implies, the File Manager manages all of your store files and their respective URLs. It is able to translate the asset paths and then export the asset immutable URLs so that all block assets can be properly rendered.
The Assets Builder has two main advantages:
- You won't need to declare URLs for assets in each blocks, making your code lighter;
 - You can use it whenever you want, having no prerequisites.
 
Check out the instructions to use it below:
Instructions
- Add the  
assets-builderto your theme's builder list in themanifest.jsonfile. For example: 
_10"builders": {_10  "assets": "0.x"_10},
- In the 
storeroot directory of your app, create anassetsfolder to manage your store's assets, such as images. - Then, add the desired asset files in the  
assetsfolder. Notice that you can create subfolders within theassetsfolder to better organize the assets used by the theme blocks, as shown below: 

If you created subfolders inside the Assets folder, remember to include the folder hierarchy in the asset path, such as:
assets/events/vtex-day.jpg.
- Use the asset path (
assets/{imageFileName}.{jpg/png/gif}) as the value of a given block's prop, such assrc, or CSS class for media rendering: 
_10"image": {  _10    "props": {  _10      "src": "assets/myimage.png"  _10    }  _10}
Once the asset path was added and you save the changes performed, Assets Builder will automatically work to save it in the VTEX IO File Manager and then generate a URL for it, which will be considered by the platform during the theme rendering.
A few things to consider:
- The Assets Builder is not responsible for URL caching, File Manager is;
 - It is not possible to reference assets through React or other apps;
 - Avoid long file names or unnecessarily heavy assets. This will negatively affect the request payload size and Builder optimization;
 - Any image extension is allowed, such as JPEG, PNG and GIF. Videos are not allowed yet.