- 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
12 lines
516 B
JavaScript
12 lines
516 B
JavaScript
/**
|
|
* @typedef {import('./lib/index.js').FindAndReplaceList} FindAndReplaceList
|
|
* @typedef {import('./lib/index.js').FindAndReplaceTuple} FindAndReplaceTuple
|
|
* @typedef {import('./lib/index.js').Find} Find
|
|
* @typedef {import('./lib/index.js').Options} Options
|
|
* @typedef {import('./lib/index.js').RegExpMatchObject} RegExpMatchObject
|
|
* @typedef {import('./lib/index.js').ReplaceFunction} ReplaceFunction
|
|
* @typedef {import('./lib/index.js').Replace} Replace
|
|
*/
|
|
|
|
export {findAndReplace} from './lib/index.js'
|