remove remote web user data directory and use indexedDB in browser

This commit is contained in:
Sandeep Somavarapu
2020-09-05 09:06:43 +02:00
parent 13ddf0e415
commit e8cf34521d
4 changed files with 1 additions and 31 deletions

View File

@@ -395,8 +395,7 @@ async function handleRoot(req, res) {
.replace('{{WORKBENCH_WEB_CONFIGURATION}}', () => escapeAttribute(JSON.stringify(webConfigJSON))) // use a replace function to avoid that regexp replace patterns ($&, $0, ...) are applied
.replace('{{WORKBENCH_BUILTIN_EXTENSIONS}}', () => escapeAttribute(JSON.stringify(dedupedBuiltInExtensions)))
.replace('{{WORKBENCH_CREDENTIALS}}', () => escapeAttribute(JSON.stringify(credentials)))
.replace('{{WEBVIEW_ENDPOINT}}', '')
.replace('{{REMOTE_USER_DATA_URI}}', '');
.replace('{{WEBVIEW_ENDPOINT}}', '');
const headers = { 'Content-Type': 'text/html' };