fix: Final restoration with port 80
✅ 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.
This commit is contained in:
49
node_modules/@libsql/client/lib-esm/ws.d.ts
generated
vendored
Normal file
49
node_modules/@libsql/client/lib-esm/ws.d.ts
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
import * as hrana from "@libsql/hrana-client";
|
||||
import type { Config, IntMode, Client, Transaction, ResultSet, InStatement, InArgs, Replicated } from "@libsql/core/api";
|
||||
import { TransactionMode } from "@libsql/core/api";
|
||||
import type { ExpandedConfig } from "@libsql/core/config";
|
||||
import { HranaTransaction } from "./hrana.js";
|
||||
import { SqlCache } from "./sql_cache.js";
|
||||
export * from "@libsql/core/api";
|
||||
export declare function createClient(config: Config): WsClient;
|
||||
/** @private */
|
||||
export declare function _createClient(config: ExpandedConfig): WsClient;
|
||||
interface ConnState {
|
||||
client: hrana.WsClient;
|
||||
useSqlCache: boolean | undefined;
|
||||
sqlCache: SqlCache;
|
||||
openTime: Date;
|
||||
streamStates: Set<StreamState>;
|
||||
}
|
||||
interface StreamState {
|
||||
conn: ConnState;
|
||||
stream: hrana.WsStream;
|
||||
}
|
||||
export declare class WsClient implements Client {
|
||||
#private;
|
||||
closed: boolean;
|
||||
protocol: "ws";
|
||||
/** @private */
|
||||
constructor(client: hrana.WsClient, url: URL, authToken: string | undefined, intMode: IntMode, concurrency: number | undefined);
|
||||
private limit;
|
||||
execute(stmtOrSql: InStatement | string, args?: InArgs): Promise<ResultSet>;
|
||||
batch(stmts: Array<InStatement | [string, InArgs?]>, mode?: TransactionMode): Promise<Array<ResultSet>>;
|
||||
migrate(stmts: Array<InStatement>): Promise<Array<ResultSet>>;
|
||||
transaction(mode?: TransactionMode): Promise<WsTransaction>;
|
||||
executeMultiple(sql: string): Promise<void>;
|
||||
sync(): Promise<Replicated>;
|
||||
reconnect(): Promise<void>;
|
||||
_closeStream(streamState: StreamState): void;
|
||||
close(): void;
|
||||
}
|
||||
export declare class WsTransaction extends HranaTransaction implements Transaction {
|
||||
#private;
|
||||
/** @private */
|
||||
constructor(client: WsClient, state: StreamState, mode: TransactionMode, version: hrana.ProtocolVersion);
|
||||
/** @private */
|
||||
_getStream(): hrana.Stream;
|
||||
/** @private */
|
||||
_getSqlCache(): SqlCache;
|
||||
close(): void;
|
||||
get closed(): boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user