This commit implements the core admin dashboard functionality including NextAuth authentication, Cloudflare D1 database integration with complete schema, and Cloudflare R2 file upload system for portfolio images. Features include artist management, appointment scheduling, and data migration capabilities.
22 lines
549 B
JavaScript
22 lines
549 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "default", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return optimize;
|
|
}
|
|
});
|
|
async function optimize(html, config) {
|
|
let AmpOptimizer;
|
|
try {
|
|
AmpOptimizer = require("next/dist/compiled/@ampproject/toolbox-optimizer");
|
|
} catch (_) {
|
|
return html;
|
|
}
|
|
const optimizer = AmpOptimizer.create(config);
|
|
return optimizer.transformHtml(html, config);
|
|
}
|
|
|
|
//# sourceMappingURL=optimize-amp.js.map
|