Skip to content

Commit

Permalink
feat(package.json): update devDependencies versions for tailwindcss/t…
Browse files Browse the repository at this point in the history
…ypography, autoprefixer, and axios

feat(package.json): update postcss and postcss-nesting versions for compatibility
feat(package.json): update tailwindcss version for compatibility
feat(postcss.config.js): add postcss configuration for tailwindcss and autoprefixer
feat(tailwind.config.js): add initial tailwindcss configuration with empty content and theme properties
  • Loading branch information
marco76tv committed May 22, 2024
1 parent 9df1c4a commit c8251d8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"axios": "^1.6.8",
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.19",
"axios": "^0.21.4",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"laravel-vite-plugin": "^0.6.1",
"lodash": "^4.17.21",
"postcss": "^8.4.33",
"postcss-nesting": "^12.0.2",
"tailwindcss": "^3.4.1",
"postcss": "^8.4.38",
"postcss-nesting": "^12.1.4",
"tailwindcss": "^3.4.3",
"tippy.js": "^6.3.7",
"vite": "^3.2.8"
}
Expand Down
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
9 changes: 9 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
}

0 comments on commit c8251d8

Please sign in to comment.