Update default URL for overriding the origin.

This commit is contained in:
Richard Bowman 2026-04-01 09:54:25 +01:00 committed by Julian Stirling
parent c37ed236c3
commit f91373e215
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ export const useSettingsStore = defineStore(
const appTheme = ref("system");
const disableStream = ref(false);
// The origin to use if overriding with dev tools
const overrideOrigin = ref("http://microscope.local:5000");
const overrideOrigin = ref("http://microscope.local:5000/api/v3");
// The step sizes for navigation via control pane/keys presses
const navigationStepSize = ref({
x: 200,

View file

@ -42,7 +42,7 @@ export default defineConfig({
host: true,
// Set the development server port to 8080.
// OFM uses port 5000, so we avoid conflicts. run, and override by using the address:
// http://microscope.local:8080/?overrideOrigin=http://microscope.local:5000#
// http://microscope.local:8080/?overrideOrigin=http://microscope.local:5000/api/v3#
port: 8080,
strictPort: true,
},