diff --git a/server/controllers/embed.controller.js b/server/controllers/embed.controller.js index 8b56455a..020c492d 100644 --- a/server/controllers/embed.controller.js +++ b/server/controllers/embed.controller.js @@ -24,7 +24,8 @@ export function serveProject(req, res) { const sketchDoc = window.document; const base = sketchDoc.createElement('base'); - const fullUrl = `${req.protocol}://${req.get('host')}${req.originalUrl}`; + // const fullUrl = `${req.protocol}://${req.get('host')}${req.originalUrl}`; + const fullUrl = `${req.protocol}://${req.get('host')}`; base.href = `${fullUrl}/`; sketchDoc.head.appendChild(base);