- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
import PackageVersion from '../version.js';
|
|
import BrowserErrorCaptureEnum from './enums/BrowserErrorCaptureEnum.js';
|
|
import BrowserNavigationCrossOriginPolicyEnum from './enums/BrowserNavigationCrossOriginPolicyEnum.js';
|
|
export default {
|
|
disableJavaScriptEvaluation: false,
|
|
disableJavaScriptFileLoading: false,
|
|
disableCSSFileLoading: false,
|
|
disableIframePageLoading: false,
|
|
disableComputedStyleRendering: false,
|
|
disableErrorCapturing: false,
|
|
errorCapture: BrowserErrorCaptureEnum.tryAndCatch,
|
|
enableFileSystemHttpRequests: false,
|
|
timer: {
|
|
maxTimeout: -1,
|
|
maxIntervalTime: -1,
|
|
maxIntervalIterations: -1,
|
|
preventTimerLoops: false
|
|
},
|
|
fetch: {
|
|
disableSameOriginPolicy: false,
|
|
disableStrictSSL: false,
|
|
interceptor: null,
|
|
virtualServers: null
|
|
},
|
|
navigation: {
|
|
disableMainFrameNavigation: false,
|
|
disableChildFrameNavigation: false,
|
|
disableChildPageNavigation: false,
|
|
disableFallbackToSetURL: false,
|
|
crossOriginPolicy: BrowserNavigationCrossOriginPolicyEnum.anyOrigin
|
|
},
|
|
navigator: {
|
|
userAgent: `Mozilla/5.0 (X11; ${process.platform.charAt(0).toUpperCase() + process.platform.slice(1) + ' ' + process.arch}) AppleWebKit/537.36 (KHTML, like Gecko) HappyDOM/${PackageVersion.version}`,
|
|
maxTouchPoints: 0
|
|
},
|
|
device: {
|
|
prefersColorScheme: 'light',
|
|
prefersReducedMotion: 'no-preference',
|
|
mediaType: 'screen',
|
|
forcedColors: 'none'
|
|
},
|
|
debug: {
|
|
traceWaitUntilComplete: -1
|
|
}
|
|
};
|
|
//# sourceMappingURL=DefaultBrowserSettings.js.map
|