42 lines
894 B
JavaScript
42 lines
894 B
JavaScript
const Inert = require('inert');
|
|
const Path = require('path');
|
|
const Execa = require('execa');
|
|
const { readFile } = require('mz/fs');
|
|
|
|
const ROOT = Path.join(__dirname, '../build');
|
|
|
|
exports.register = async server => {
|
|
await Execa('npm', ['run', 'build'], {
|
|
cwd: Path.join(__dirname, '..'),
|
|
stdio: 'inherit'
|
|
});
|
|
|
|
const manifest = require('../build/asset-manifest.json');
|
|
|
|
await server.register(Inert);
|
|
|
|
server.route([
|
|
{
|
|
method: 'GET',
|
|
path: '/nav-static/{path*}',
|
|
config: {
|
|
auth: false,
|
|
handler: (request, h) => {
|
|
const { params } = request;
|
|
const { path } = params;
|
|
|
|
const file = manifest[path];
|
|
|
|
if (!file) {
|
|
return h.continue;
|
|
}
|
|
|
|
return h.file(Path.join(ROOT, file), { confine: ROOT });
|
|
}
|
|
}
|
|
}
|
|
]);
|
|
};
|
|
|
|
exports.pkg = require('../package.json');
|