Initial commit

This commit is contained in:
Alejandro Martinez
2026-02-12 02:04:10 +01:00
commit f09af719cf
13433 changed files with 2193445 additions and 0 deletions

18
node_modules/astro/dist/preferences/defaults.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
const DEFAULT_PREFERENCES = {
devToolbar: {
/** Specifies whether the user has the Dev Overlay enabled */
enabled: true
},
checkUpdates: {
/** Specifies whether the user has the update check enabled */
enabled: true
},
// Temporary variables that shouldn't be exposed to the users in the CLI, but are still useful to store in preferences
_variables: {
/** Time since last update check */
lastUpdateCheck: 0
}
};
export {
DEFAULT_PREFERENCES
};