Skip to content

Commit

Permalink
Fix server URL
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasDeBruijn committed Oct 27, 2024
1 parent 0014249 commit 95eadf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createApp } from 'vue'
import { registerPlugins } from '@/plugins'
import App from './App.vue'

export const server = "http://localhost:8080";
export const server = process.env.NODE_ENV == 'development' ? "http://fallacious-rooster.local:8080" : "";

// Vuetify missing type
export type InputValidationRule = (v: string) => string | boolean;
Expand Down

0 comments on commit 95eadf8

Please sign in to comment.