me
/
ethanreece.com
Archived
1
0
Fork 0

Add useful packages

main
Ethan Reece 2023-05-24 13:10:24 -05:00
parent 4790625f38
commit d96b630aee
Signed by: me
GPG Key ID: D3993665FF92E1C3
3 changed files with 16 additions and 2 deletions

View File

@ -1,4 +1,8 @@
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
// https://astro.build/config // https://astro.build/config
export default defineConfig({}); export default defineConfig({
integrations: [tailwind()]
});

BIN
bun.lockb

Binary file not shown.

View File

@ -10,6 +10,16 @@
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"astro": "^2.4.1" "@astrojs/tailwind": "^3.1.3",
"astro": "^2.5.0",
"tailwindcss": "^3.0.24eslint-plugin-jsx-a11y"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-plugin-astro": "^0.27.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.9.0"
} }
} }