✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
27 lines
766 B
TypeScript
27 lines
766 B
TypeScript
export { digest } from 'ohash/crypto';
|
|
export { i as isEqual } from './shared/ohash.CMR0vuBX.mjs';
|
|
|
|
/**
|
|
* Serializes any input value into a string for hashing.
|
|
*
|
|
* This method uses best efforts to generate stable serialized values.
|
|
* However, it is not designed for security purposes.
|
|
* Keep in mind that there is always a chance of intentional collisions caused by user input.
|
|
*
|
|
* @param input any value to serialize
|
|
* @return {string} serialized string value
|
|
*/
|
|
declare function serialize(input: any): string;
|
|
|
|
/**
|
|
* Hashes any JS value into a string.
|
|
*
|
|
* The input is first serialized and then hashed.
|
|
*
|
|
* @param input any value to serialize
|
|
* @return {string} hash value
|
|
*/
|
|
declare function hash(input: any): string;
|
|
|
|
export { hash, serialize };
|