diff --git a/CHANGELOG.md b/CHANGELOG.md index 94489c3..d1fd5e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.2.1 + +- [Edited] fixed ts-lint +- [Edited] set Astro static build configuration instead of SSR + ## v0.2.0 - [Edited] Re-structure into Astro ✨ diff --git a/README.md b/README.md index b4b3afb..9a2b8ed 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ The AES encryption & decryption tools with interactive web-app. ![preview](docs/preview.jpg) ## Table of Contents + - [encrypt-tools](#encrypt-tools) - [Table of Contents](#table-of-contents) - [📦 Build with](#-build-with) diff --git a/astro.config.mjs b/astro.config.mjs index a769812..4636d83 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -7,7 +7,7 @@ import react from "@astrojs/react"; // https://astro.build/config export default defineConfig({ - output: "server", + output: "static", integrations: [ tailwind({ applyBaseStyles: false, diff --git a/package.json b/package.json index 413f90e..02d12dc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "encrypt-tools", "type": "module", - "version": "0.2.0", + "version": "0.2.1", "scripts": { "dev": "astro dev", "start": "astro dev", @@ -13,6 +13,7 @@ "format": "prettier --plugin=prettier-plugin-astro --plugin=prettier-plugin-tailwindcss --write ." }, "dependencies": { + "@astrojs/check": "^0.9.4", "@astrojs/react": "^3.6.3", "@astrojs/tailwind": "^5.1.2", "@radix-ui/react-label": "^2.1.0", @@ -39,4 +40,4 @@ "prettier-plugin-tailwindcss": "^0.6.9", "vitest": "^2.1.6" } -} +} \ No newline at end of file diff --git a/src/components/common/Footer.astro b/src/components/common/Footer.astro index a330195..40b3d16 100644 --- a/src/components/common/Footer.astro +++ b/src/components/common/Footer.astro @@ -1,10 +1,10 @@ --- -const buyMeACoffeeLink = "https://www.buymeacoffee.com/watsize"; +// const buyMeACoffeeLink = "https://www.buymeacoffee.com/watsize"; const githubLink = "https://github.com/owlsome-official/encrypt-tools"; ---