Skip to content

Commit

Permalink
chore: Update URL
Browse files Browse the repository at this point in the history
  • Loading branch information
sidharthv96 committed Nov 14, 2024
1 parent dc114d5 commit b658cee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/util/util.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { dev } from '$app/environment';
import { loadDataFromUrl } from './fileLoaders/loader';
import { initLoading } from './loading';
import { applyMigrations } from './migrations';
Expand Down Expand Up @@ -27,7 +26,7 @@ export const initHandler = async (): Promise<void> => {

export const isMac = navigator.platform.toUpperCase().includes('MAC');
export const cmdKey = isMac ? 'Cmd' : 'Ctrl';
export const MCBaseURL = dev ? 'http://localhost:5174' : 'https://mermaidchart.com';
export const MCBaseURL = 'https://mermaidchart.com'; // 'http://localhost:5174'

let count = 0;
export const errorDebug = (limit = 1000) => {
Expand Down

0 comments on commit b658cee

Please sign in to comment.