mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-07 21:14:32 +08:00
24 lines
715 B
HTML
24 lines
715 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Web Components Test</title>
|
|
<link rel="stylesheet" href="/packs/style.css" />
|
|
<script>
|
|
window.__WOOT_ACCOUNT_ID__ = 1;
|
|
window.__WOOT_API_HOST__ = 'http://localhost:3000';
|
|
window.__WOOT_ACCESS_TOKEN__ = 'code';
|
|
window.__PUBSUB_TOKEN__ = 'pubsub';
|
|
window.__WEBSOCKET_URL__ = 'ws://localhost:3000';
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Web Components Test</h1>
|
|
<h2>Message List</h2>
|
|
<woot-message-list conversation-id="5833"></woot-message-list>
|
|
|
|
<script src="/packs/js/ui.js"></script>
|
|
</body>
|
|
</html>
|