Skip to content

Commit

Permalink
install tailwind; remove unused configs
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogouveia3 committed Sep 1, 2024
1 parent 87fac79 commit 5ac5945
Show file tree
Hide file tree
Showing 7 changed files with 498 additions and 50 deletions.
2 changes: 0 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ module.exports = {
node: true,
},
extends: [
'@nuxtjs/eslint-config-typescript',
'plugin:prettier/recommended',
'plugin:nuxt/recommended',
],
plugins: [],
// add your custom rules here
Expand Down
6 changes: 5 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { defineConfig } from 'astro/config';

import tailwind from '@astrojs/tailwind';

// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [tailwind()]
});
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
"astro": "astro"
},
"dependencies": {
"astro": "^4.15.1",
"@astrojs/check": "^0.9.3",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.15.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
}
}
Loading

0 comments on commit 5ac5945

Please sign in to comment.