aboutsummaryrefslogtreecommitdiffstats
path: root/config.js
blob: db6ccab68ba7326b6cb7f6aeeefc9bda36928e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Default config
var config = {
    "base_url": "http://localhost:7060/comments",
    "page_id": "add-page-id-here"
}


// github pages config
if (window.location.hostname === 'danielrholland.github.io'){
  config = {
    base_url : 'https://comments.dotemgo.com/comments',
    page_id : 'https://danielrholland.github.io/simple-comments-widget/client.html'
  };
}