Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
No EOL
928 B
Text
26 lines
No EOL
928 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "after", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return after;
|
|
}
|
|
});
|
|
const _workasyncstorageexternal = require("../app-render/work-async-storage.external");
|
|
function after(task) {
|
|
const workStore = _workasyncstorageexternal.workAsyncStorage.getStore();
|
|
if (!workStore) {
|
|
// TODO(after): the linked docs page talks about *dynamic* APIs, which after soon won't be anymore
|
|
throw Object.defineProperty(new Error('`after` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context'), "__NEXT_ERROR_CODE", {
|
|
value: "E468",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
const { afterContext } = workStore;
|
|
return afterContext.after(task);
|
|
}
|
|
|
|
//# sourceMappingURL=after.js.map |