style(prettier): ignore astro dir
This commit is contained in:
parent
568cb053b0
commit
3ee16148e1
59
.astro/types.d.ts
vendored
59
.astro/types.d.ts
vendored
@ -135,41 +135,44 @@ declare module 'astro:content' {
|
|||||||
>;
|
>;
|
||||||
|
|
||||||
type ContentEntryMap = {
|
type ContentEntryMap = {
|
||||||
blog: {
|
"blog": {
|
||||||
'10-essential-web-development-tools-for-building-stunning-websites.mdx': {
|
"10-essential-web-development-tools-for-building-stunning-websites.mdx": {
|
||||||
id: '10-essential-web-development-tools-for-building-stunning-websites.mdx';
|
id: "10-essential-web-development-tools-for-building-stunning-websites.mdx";
|
||||||
slug: '10-essential-web-development-tools-for-building-stunning-websites';
|
slug: "10-essential-web-development-tools-for-building-stunning-websites";
|
||||||
body: string;
|
body: string;
|
||||||
collection: 'blog';
|
collection: "blog";
|
||||||
data: InferEntrySchema<'blog'>;
|
data: InferEntrySchema<"blog">
|
||||||
} & { render(): Render['.mdx'] };
|
} & { render(): Render[".mdx"] };
|
||||||
'essential-frontend-tools-for-astro-js-developers.mdx': {
|
"essential-frontend-tools-for-astro-js-developers.mdx": {
|
||||||
id: 'essential-frontend-tools-for-astro-js-developers.mdx';
|
id: "essential-frontend-tools-for-astro-js-developers.mdx";
|
||||||
slug: 'essential-frontend-tools-for-astro-js-developers';
|
slug: "essential-frontend-tools-for-astro-js-developers";
|
||||||
body: string;
|
body: string;
|
||||||
collection: 'blog';
|
collection: "blog";
|
||||||
data: InferEntrySchema<'blog'>;
|
data: InferEntrySchema<"blog">
|
||||||
} & { render(): Render['.mdx'] };
|
} & { render(): Render[".mdx"] };
|
||||||
'exploring-nodejs-development-trends-2024.mdx': {
|
"exploring-nodejs-development-trends-2024.mdx": {
|
||||||
id: 'exploring-nodejs-development-trends-2024.mdx';
|
id: "exploring-nodejs-development-trends-2024.mdx";
|
||||||
slug: 'exploring-nodejs-development-trends-2024';
|
slug: "exploring-nodejs-development-trends-2024";
|
||||||
body: string;
|
body: string;
|
||||||
collection: 'blog';
|
collection: "blog";
|
||||||
data: InferEntrySchema<'blog'>;
|
data: InferEntrySchema<"blog">
|
||||||
} & { render(): Render['.mdx'] };
|
} & { render(): Render[".mdx"] };
|
||||||
'unleasing-the-power-of-astro-js-for-better-web-development.mdx': {
|
"unleasing-the-power-of-astro-js-for-better-web-development.mdx": {
|
||||||
id: 'unleasing-the-power-of-astro-js-for-better-web-development.mdx';
|
id: "unleasing-the-power-of-astro-js-for-better-web-development.mdx";
|
||||||
slug: 'unleasing-the-power-of-astro-js-for-better-web-development';
|
slug: "unleasing-the-power-of-astro-js-for-better-web-development";
|
||||||
body: string;
|
body: string;
|
||||||
collection: 'blog';
|
collection: "blog";
|
||||||
data: InferEntrySchema<'blog'>;
|
data: InferEntrySchema<"blog">
|
||||||
} & { render(): Render['.mdx'] };
|
} & { render(): Render[".mdx"] };
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
type DataEntryMap = {};
|
};
|
||||||
|
|
||||||
|
type DataEntryMap = {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
type AnyEntryMap = ContentEntryMap & DataEntryMap;
|
type AnyEntryMap = ContentEntryMap & DataEntryMap;
|
||||||
|
|
||||||
export type ContentConfig = typeof import('../src/content/config.js');
|
export type ContentConfig = typeof import("../src/content/config.js");
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
.astro
|
||||||
.github
|
.github
|
||||||
dist
|
dist
|
||||||
node_modules
|
node_modules
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user