- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
14 lines
268 B
JavaScript
14 lines
268 B
JavaScript
'use strict';
|
|
|
|
const MIN_SIZE = 16 * 1024;
|
|
|
|
function adoptBuffer(buffer = null, size) {
|
|
if (buffer === null || buffer.length < size) {
|
|
return new Uint32Array(Math.max(size + 1024, MIN_SIZE));
|
|
}
|
|
|
|
return buffer;
|
|
}
|
|
|
|
exports.adoptBuffer = adoptBuffer;
|