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>
22 lines
1001 B
JavaScript
22 lines
1001 B
JavaScript
import './register-deployment-id-global';
|
|
import { appBootstrap } from './app-bootstrap';
|
|
import { isRecoverableError } from './react-client-callbacks/on-recoverable-error';
|
|
window.next.turbopack = true;
|
|
self.__webpack_hash__ = '';
|
|
// eslint-disable-next-line @next/internal/typechecked-require
|
|
const instrumentationHooks = require('../lib/require-instrumentation-client');
|
|
appBootstrap((assetPrefix)=>{
|
|
const { hydrate } = require('./app-index');
|
|
try {
|
|
hydrate(instrumentationHooks, assetPrefix);
|
|
} finally{
|
|
if (process.env.__NEXT_DEV_SERVER) {
|
|
const enableCacheIndicator = process.env.__NEXT_CACHE_COMPONENTS;
|
|
const { getOwnerStack } = require('../next-devtools/userspace/app/errors/stitched-error');
|
|
const { renderAppDevOverlay } = require('next/dist/compiled/next-devtools');
|
|
renderAppDevOverlay(getOwnerStack, isRecoverableError, enableCacheIndicator);
|
|
}
|
|
}
|
|
});
|
|
|
|
//# sourceMappingURL=app-next-turbopack.js.map
|