Handlebars template's filename extension
Hi,
my templates files got the extension .handlebars
and I want to change it to .hbs
const express = require('express');
const exphbs = require('express-handlebars');
const app = express();
app.engine('handlebars', exphbs({defaultLayout: 'index'}));
app.set('view engine', 'handlebars');
when changing handlebars
to hbs
and renaming the files, errors appear. The files are not found anymore.
What is missing?