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>
20 lines
795 B
JavaScript
20 lines
795 B
JavaScript
"use strict";
|
|
if (process.env.NEXT_RUNTIME === 'edge') {
|
|
module.exports = require('next/dist/server/route-modules/pages-api/module.js');
|
|
} else {
|
|
if (process.env.NODE_ENV === 'development') {
|
|
if (process.env.TURBOPACK) {
|
|
module.exports = require('next/dist/compiled/next-server/pages-api-turbo.runtime.dev.js');
|
|
} else {
|
|
module.exports = require('next/dist/compiled/next-server/pages-api.runtime.dev.js');
|
|
}
|
|
} else {
|
|
if (process.env.TURBOPACK) {
|
|
module.exports = require('next/dist/compiled/next-server/pages-api-turbo.runtime.prod.js');
|
|
} else {
|
|
module.exports = require('next/dist/compiled/next-server/pages-api.runtime.prod.js');
|
|
}
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=module.compiled.js.map
|