Я использую редактор intellij Idea, как я могу отладить файл hbs в браузере, проблема в том, что файл отображается, но он показывает только код на странице, он не отображает сам контент
Handlebars не могут быть выполнены браузером напрямую, вы должны сначала скомпилировать их, например
<!-- Include Handlebars from a CDN --> <script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script> <script> // compile the template var template = Handlebars.compile("Handlebars <b>{{doesWhat}}</b>"); // execute the compiled template and print the output to the console console.log(template({ doesWhat: "rocks!" })); </script>
См. https://handlebarsjs.com/installation/#installation