diff --git a/astro.config.mjs b/astro.config.mjs index 7f77b28..f4eb754 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -62,7 +62,6 @@ export default defineConfig({ }, vite: { optimizeDeps: { - extensions: [".png"], exclude: ["@resvg/resvg-js"], }, }, diff --git a/package.json b/package.json index ed26260..ca8676f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "scripts": { "start": "astro dev", "dev": "astro dev", - "build": "astro build && jampack ./dist", + "build": "astro build", "preview": "astro preview", "sync": "astro sync", "astro": "astro", diff --git a/public/robots.txt b/public/robots.txt index ed78e2f..c9859ac 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -1,8 +1,6 @@ -User-agent: Googlebot -Disallow: /nogooglebot/ - User-agent: * Allow: / +Disallow: /*.md$ Disallow: /tags/ Disallow: /recipes/ diff --git a/src/content/blog/gentle-introduction-to-typescript-compiler-api.md b/src/content/blog/gentle-introduction-to-typescript-compiler-api.md index 72a557e..a4019ac 100644 --- a/src/content/blog/gentle-introduction-to-typescript-compiler-api.md +++ b/src/content/blog/gentle-introduction-to-typescript-compiler-api.md @@ -1043,7 +1043,7 @@ Recall diagnostics? the emit process will fail if there are any errors but that Using [ESLint](https://eslint.org/) is a better option if you want to enforce rules on your codebase because it's specifically built for that purpose. However, if you want to build a tool that does something more complex, then the Typescript Compiler API is the way to go. -[I have written a guide for you](https://writer.sh/posts/gentle-introduction-to-eslint-rules) to learn more. +[I have written a guide for you](https://writer.sh/posts/gentle-introduction-to-ESLint-rules) to learn more. ## Conclusion