Initial commit: New MoreminiMore website with fresh design
This commit is contained in:
17
node_modules/astro/dist/content/vite-plugin-content-assets.d.ts
generated
vendored
Normal file
17
node_modules/astro/dist/content/vite-plugin-content-assets.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { AssetsPrefix } from '../core/app/types.js';
|
||||
import { type Plugin } from 'vite';
|
||||
import type { BuildInternals } from '../core/build/internal.js';
|
||||
import type { ExtractedChunk } from '../core/build/static-build.js';
|
||||
import type { AstroSettings } from '../types/astro.js';
|
||||
export declare function astroContentAssetPropagationPlugin({ settings, }: {
|
||||
settings: AstroSettings;
|
||||
}): Plugin;
|
||||
/**
|
||||
* Post-build hook that injects propagated styles into content collection chunks.
|
||||
* Finds chunks with LINKS_PLACEHOLDER and STYLES_PLACEHOLDER, and replaces them
|
||||
* with actual styles from propagatedStylesMap.
|
||||
*/
|
||||
export declare function contentAssetsBuildPostHook(base: string, assetsPrefix: AssetsPrefix | undefined, internals: BuildInternals, { chunks, mutate, }: {
|
||||
chunks: ExtractedChunk[];
|
||||
mutate: (fileName: string, code: string, prerender: boolean) => void;
|
||||
}): Promise<void>;
|
||||
Reference in New Issue
Block a user