Add useful packages
parent
4790625f38
commit
d96b630aee
|
@ -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()]
|
||||||
|
});
|
12
package.json
12
package.json
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue