- Added CORS allowed origins in config.compose.yaml to enable cross-origin requests from the web service. - Updated docker-compose.yml to include a new web service with build context and port mapping for local development. - Enhanced gateway.go to support additional HTTP methods in CORS responses. - Updated README.md to document the new web service and its configuration requirements.
7 lines
279 B
TypeScript
7 lines
279 B
TypeScript
export const SIDEBAR_COOKIE_NAME = "sidebar:state";
|
|
export const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7;
|
|
export const SIDEBAR_WIDTH = "16rem";
|
|
export const SIDEBAR_WIDTH_MOBILE = "18rem";
|
|
export const SIDEBAR_WIDTH_ICON = "3rem";
|
|
export const SIDEBAR_KEYBOARD_SHORTCUT = "b";
|