joyent-portal/spikes/architecture/react-d3/server/routes/static.js

16 lines
314 B
JavaScript

const path = require('path');
module.exports = (server) => {
// server.route({
// method: 'GET',
// path: '/{param*}',
// handler: {
// directory: {
// path: path.join(__dirname, '../../static'),
// redirectToSlash: true,
// index: true
// }
// }
// });
};