1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-20 13:31:12 +02:00

offscreen.js: fix url

This commit is contained in:
Kushagra Gour
2024-05-09 17:22:03 +05:30
parent 3482fabefd
commit 589b66349e

View File

@@ -1,5 +1,5 @@
// This URL must point to the public site // This URL must point to the public site
const _URL = 'http://localhost:1234'; const _URL = 'https://webmaker.app/signup';
const iframe = document.createElement('iframe'); const iframe = document.createElement('iframe');
iframe.src = _URL; iframe.src = _URL;
document.documentElement.appendChild(iframe); document.documentElement.appendChild(iframe);