Add 404 page and robots.txt

This commit is contained in:
schmelczerandras 2020-09-28 17:07:32 +02:00
parent 975f794cdf
commit f568888077
6 changed files with 53 additions and 3 deletions

10
custom.d.ts vendored
View file

@ -14,3 +14,13 @@ declare module '*.jpeg' {
const content: ResponsiveImage;
export default content;
}
declare module '*.txt' {
const content: string;
export default content;
}
declare module '*.html' {
const content: string;
export default content;
}