Skip to content

Commit e462468

Browse files
committed
fix: updated api url to prod
1 parent 424260b commit e462468

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mmdv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def run(self, edit):
1212
class MmdvCommand(sublime_plugin.TextCommand):
1313
def __init__(self, view):
1414
super().__init__(view)
15-
self.BASE_URL = 'localhost:3000'
16-
self.connection = 'http'
15+
self.BASE_URL = 'mem.dev'
16+
self.connection = 'https'
1717
self.__title = ''
1818
self.__content = ''
1919

0 commit comments

Comments
 (0)