Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
74 lines
1.7 KiB
JavaScript
74 lines
1.7 KiB
JavaScript
/*
|
|
|
|
Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.
|
|
|
|
*/ "use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
0 && (module.exports = {
|
|
preconnect: null,
|
|
preloadFont: null,
|
|
preloadStyle: null
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
preconnect: function() {
|
|
return preconnect;
|
|
},
|
|
preloadFont: function() {
|
|
return preloadFont;
|
|
},
|
|
preloadStyle: function() {
|
|
return preloadStyle;
|
|
}
|
|
});
|
|
const _reactdom = /*#__PURE__*/ _interop_require_default(require("react-dom"));
|
|
function _interop_require_default(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
function preloadStyle(href, crossOrigin, nonce) {
|
|
const opts = {
|
|
as: 'style'
|
|
};
|
|
if (typeof crossOrigin === 'string') {
|
|
opts.crossOrigin = crossOrigin;
|
|
}
|
|
if (typeof nonce === 'string') {
|
|
opts.nonce = nonce;
|
|
}
|
|
_reactdom.default.preload(href, opts);
|
|
}
|
|
function preloadFont(href, type, crossOrigin, nonce) {
|
|
const opts = {
|
|
as: 'font',
|
|
type
|
|
};
|
|
if (typeof crossOrigin === 'string') {
|
|
opts.crossOrigin = crossOrigin;
|
|
}
|
|
if (typeof nonce === 'string') {
|
|
opts.nonce = nonce;
|
|
}
|
|
_reactdom.default.preload(href, opts);
|
|
}
|
|
function preconnect(href, crossOrigin, nonce) {
|
|
const opts = {};
|
|
if (typeof crossOrigin === 'string') {
|
|
opts.crossOrigin = crossOrigin;
|
|
}
|
|
if (typeof nonce === 'string') {
|
|
opts.nonce = nonce;
|
|
}
|
|
;
|
|
_reactdom.default.preconnect(href, opts);
|
|
}
|
|
|
|
//# sourceMappingURL=preloads.js.map
|