fix: Fix product page syntax errors

1. Remove duplicate/broken code in product tables section
2. Fix PostCSS config for Tailwind 4
3. Add @tailwindcss/postcss dependency
4. Remove --production flag from Dockerfile (sharp required)

All fixes enable successful Docker build with favicon working.
This commit is contained in:
Kunthawat Greethong
2026-03-03 14:57:46 +07:00
parent a26dad6159
commit 6562a1748f
10139 changed files with 1502525 additions and 19 deletions

View File

@@ -0,0 +1,36 @@
import { TableClient } from "@azure/data-tables";
export interface AzureStorageTableOptions {
/**
* The name of the Azure Storage account.
*/
accountName: string;
/**
* The name of the table. All entities will be stored in the same table.
* @default 'unstorage'
*/
tableName?: string;
/**
* The partition key. All entities will be stored in the same partition.
* @default 'unstorage'
*/
partitionKey?: string;
/**
* The account key. If provided, the SAS key will be ignored. Only available in Node.js runtime.
*/
accountKey?: string;
/**
* The SAS key. If provided, the account key will be ignored.
*/
sasKey?: string;
/**
* The connection string. If provided, the account key and SAS key will be ignored. Only available in Node.js runtime.
*/
connectionString?: string;
/**
* The number of entries to retrive per request. Impacts getKeys() and clear() performance. Maximum value is 1000.
* @default 1000
*/
pageSize?: number;
}
declare const _default: (opts: AzureStorageTableOptions) => import("..").Driver<AzureStorageTableOptions, TableClient>;
export default _default;