fastify-angular
Version:
Fastify plugin for angular universal project w/ multiple locales
13 lines (11 loc) • 349 B
JavaScript
;
module.exports = function fastifyAngularBrowser(fastify, opts, next) {
fastify.register(require('fastify-static'), {
prefix: '/',
root : opts.browser,
redirect: true,
// By default, send support `index.html` files. We have to disable this feature while avoid response 403
index : '<ignore>',
});
next();
};