9d3903a1db
This is an initial implement that at the moment constructs the required SVG layout to be used by D3.
16 lines
314 B
JavaScript
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
|
|
// }
|
|
// }
|
|
// });
|
|
};
|