1. Remove duplicate/broken code in product tables section 2. Fix PostCSS config for Tailwind 4 3. Add @tailwindcss/postcss dependency 4. Remove --production flag from Dockerfile (sharp required) All fixes enable successful Docker build with favicon working.
17 lines
513 B
TypeScript
17 lines
513 B
TypeScript
export declare const DEFAULT_PREFERENCES: {
|
|
devToolbar: {
|
|
/** Specifies whether the user has the Dev Overlay enabled */
|
|
enabled: boolean;
|
|
};
|
|
checkUpdates: {
|
|
/** Specifies whether the user has the update check enabled */
|
|
enabled: boolean;
|
|
};
|
|
_variables: {
|
|
/** Time since last update check */
|
|
lastUpdateCheck: number;
|
|
};
|
|
};
|
|
export type Preferences = typeof DEFAULT_PREFERENCES;
|
|
export type PublicPreferences = Omit<Preferences, '_variables'>;
|