- 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
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
class ProcessPackageManagerUserAgentProvider {
|
|
// https://docs.npmjs.com/cli/v8/using-npm/config#user-agent
|
|
userAgent = process.env.npm_config_user_agent ?? null;
|
|
}
|
|
export {
|
|
ProcessPackageManagerUserAgentProvider
|
|
};
|