feat: Upgrade to Astro with full PDPA compliance
PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
This commit is contained in:
13
node_modules/astro/dist/vite-plugin-astro-server/css.d.ts
generated
vendored
Normal file
13
node_modules/astro/dist/vite-plugin-astro-server/css.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { ModuleLoader } from '../core/module-loader/index.js';
|
||||
interface ImportedStyle {
|
||||
id: string;
|
||||
url: string;
|
||||
content: string;
|
||||
}
|
||||
/** Given a filePath URL, crawl Vite’s module graph to find all style imports. */
|
||||
export declare function getStylesForURL(filePath: URL, loader: ModuleLoader): Promise<{
|
||||
urls: Set<string>;
|
||||
styles: ImportedStyle[];
|
||||
crawledFiles: Set<string>;
|
||||
}>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user