OUTPUT_DIRECTORY_IS_EMPTY

The configured output directory is empty: {{outputDirectory}}

Why I'm seeing this​

The directory path configured in myjsblock.config.js is an empty directory. When pushing a new version, the path of the file configured in myjsblock.config.js under outputDirectory is found but it is empty

How to fix it​

The directory configured under the outputDirectory property (configured in the myjsblock.config.js) must be filled at least with one HTML file index.html.

An example project setup might be:

β”œβ”€β”€ myjsblock.config.js
└── dist  
  β”œβ”€β”€ index.html  
  └── main.js

Last updated