- 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
325 B
JavaScript
14 lines
325 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
DatePart: require('./datepart'),
|
|
Meridiem: require('./meridiem'),
|
|
Day: require('./day'),
|
|
Hours: require('./hours'),
|
|
Milliseconds: require('./milliseconds'),
|
|
Minutes: require('./minutes'),
|
|
Month: require('./month'),
|
|
Seconds: require('./seconds'),
|
|
Year: require('./year'),
|
|
}
|