✅ 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.
34 lines
1.8 KiB
TypeScript
34 lines
1.8 KiB
TypeScript
import { HttpClient } from "./http/client.js";
|
|
import { WsClient } from "./ws/client.js";
|
|
import { ProtocolVersion } from "./client.js";
|
|
export { WebSocket } from "@libsql/isomorphic-ws";
|
|
export type { Response } from "cross-fetch";
|
|
export { fetch, Request, Headers } from "cross-fetch";
|
|
export type { ProtocolVersion, ProtocolEncoding } from "./client.js";
|
|
export { Client } from "./client.js";
|
|
export type { DescribeResult, DescribeColumn } from "./describe.js";
|
|
export * from "./errors.js";
|
|
export { Batch, BatchStep, BatchCond } from "./batch.js";
|
|
export type { ParsedLibsqlUrl } from "./libsql_url.js";
|
|
export { parseLibsqlUrl } from "./libsql_url.js";
|
|
export type { StmtResult, RowsResult, RowResult, ValueResult, Row } from "./result.js";
|
|
export type { InSql, SqlOwner } from "./sql.js";
|
|
export { Sql } from "./sql.js";
|
|
export type { InStmt, InStmtArgs } from "./stmt.js";
|
|
export { Stmt } from "./stmt.js";
|
|
export { Stream } from "./stream.js";
|
|
export type { Value, InValue, IntMode } from "./value.js";
|
|
export { HttpClient } from "./http/client.js";
|
|
export { HttpStream } from "./http/stream.js";
|
|
export { WsClient } from "./ws/client.js";
|
|
export { WsStream } from "./ws/stream.js";
|
|
/** Open a Hrana client over WebSocket connected to the given `url`. */
|
|
export declare function openWs(url: string | URL, jwt?: string, protocolVersion?: ProtocolVersion): WsClient;
|
|
/** Open a Hrana client over HTTP connected to the given `url`.
|
|
*
|
|
* If the `customFetch` argument is passed and not `undefined`, it is used in place of the `fetch` function
|
|
* from `cross-fetch`. This function is always called with a `Request` object from
|
|
* `cross-fetch`.
|
|
*/
|
|
export declare function openHttp(url: string | URL, jwt?: string, customFetch?: unknown | undefined, remoteEncryptionKey?: string, protocolVersion?: ProtocolVersion): HttpClient;
|