mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 07:06:28 +08:00
a2125787c2
fix AF-2473
16 lines
892 B
TypeScript
16 lines
892 B
TypeScript
export const mainHost = '.';
|
|
export const anotherHost = 'another-host';
|
|
|
|
export const mainWindowOrigin = `file://${mainHost}`;
|
|
export const anotherOrigin = `file://${anotherHost}`;
|
|
|
|
export const onboardingViewUrl = `${mainWindowOrigin}/onboarding`;
|
|
export const shellViewUrl = `${mainWindowOrigin}/shell.html`;
|
|
export const backgroundWorkerViewUrl = `${mainWindowOrigin}/background-worker.html`;
|
|
export const customThemeViewUrl = `${mainWindowOrigin}/theme-editor.html`;
|
|
|
|
// mitigate the issue that popup window share the same zoom level of the main window
|
|
// Notes from electron official docs:
|
|
// "The zoom policy at the Chromium level is same-origin, meaning that the zoom level for a specific domain propagates across all instances of windows with the same domain. Differentiating the window URLs will make zoom work per-window."
|
|
export const popupViewUrl = `${anotherOrigin}/popup.html`;
|