Webshop/scripts/routes/other/route-index.js
2024-11-15 10:07:21 +01:00

12 lines
326 B
JavaScript

const path = require('path');
const router = require('express').Router();
router.get('/', (req, res) => {
res.sendFile(path.join(__dirname, '../../../public/index.html'));
})
router.get('/example', (req, res) => {
res.sendFile(path.join(__dirname, '../../../public/example/index.html'));
})
module.exports = router;