diff options
author | dan <[email protected]> | 2023-05-15 11:52:58 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-15 11:52:58 -0400 |
commit | ed3752063988c49719359ba80c8819b94829ce8e (patch) | |
tree | 348ee98a99b952debb9593c0fb6a1af37d28bdb0 /client.js | |
parent | 55d4b75ee6af971d79fcdabdec7969f224f09dca (diff) | |
download | simple-comments-widget-ed3752063988c49719359ba80c8819b94829ce8e.tar.gz simple-comments-widget-ed3752063988c49719359ba80c8819b94829ce8e.tar.bz2 simple-comments-widget-ed3752063988c49719359ba80c8819b94829ce8e.zip |
fix: config should refer to localhost
Diffstat (limited to 'client.js')
-rw-r--r-- | client.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* Config */ -const baseUrl = 'https://comments.dotemgo.com/comments'; -const pageId = '{{site-url}}{{uri}}'; +const baseUrl = 'https://localhost:7060/comments'; +const pageId = 'add-page-id-here'; const commentsUrl = `${baseUrl}?page_url=${pageId}`; |