Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
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