You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.7 KiB
JavaScript
76 lines
1.7 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
0 && (module.exports = {
|
|
createDefaultViewport: null,
|
|
createDefaultMetadata: null
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
createDefaultViewport: function() {
|
|
return createDefaultViewport;
|
|
},
|
|
createDefaultMetadata: function() {
|
|
return createDefaultMetadata;
|
|
}
|
|
});
|
|
function createDefaultViewport() {
|
|
return {
|
|
// name=viewport
|
|
width: "device-width",
|
|
initialScale: 1,
|
|
// visual metadata
|
|
themeColor: null,
|
|
colorScheme: null
|
|
};
|
|
}
|
|
function createDefaultMetadata() {
|
|
return {
|
|
// Deprecated ones
|
|
viewport: null,
|
|
themeColor: null,
|
|
colorScheme: null,
|
|
metadataBase: null,
|
|
// Other values are all null
|
|
title: null,
|
|
description: null,
|
|
applicationName: null,
|
|
authors: null,
|
|
generator: null,
|
|
keywords: null,
|
|
referrer: null,
|
|
creator: null,
|
|
publisher: null,
|
|
robots: null,
|
|
manifest: null,
|
|
alternates: {
|
|
canonical: null,
|
|
languages: null,
|
|
media: null,
|
|
types: null
|
|
},
|
|
icons: null,
|
|
openGraph: null,
|
|
twitter: null,
|
|
verification: {},
|
|
appleWebApp: null,
|
|
formatDetection: null,
|
|
itunes: null,
|
|
abstract: null,
|
|
appLinks: null,
|
|
archives: null,
|
|
assets: null,
|
|
bookmarks: null,
|
|
category: null,
|
|
classification: null,
|
|
other: {}
|
|
};
|
|
}
|
|
|
|
//# sourceMappingURL=default-metadata.js.map
|