Add Tailwind Typography plugin

This commit is contained in:
2020-12-18 01:22:17 +01:00
parent bca6a2ed11
commit 62862e6c14
3 changed files with 7 additions and 1 deletions

5
package-lock.json generated
View File

@@ -2362,6 +2362,11 @@
"@sinonjs/commons": "^1.7.0"
}
},
"@tailwindcss/typography": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.3.1.tgz",
"integrity": "sha512-HyZ+3Eay8SGaPq7kcFoANZLr4EjeXQ19yjjb9fp6B0PHHpvZoe00jdsnpnooMEbx9J5rQ93nxPUG3MQmXVxGMQ=="
},
"@types/anymatch": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz",

View File

@@ -12,6 +12,7 @@
},
"dependencies": {
"@nuxtjs/axios": "^5.12.4",
"@tailwindcss/typography": "^0.3.1",
"core-js": "^3.6.5",
"nuxt": "^2.14.6"
},

View File

@@ -16,5 +16,5 @@ module.exports = {
variants: {
extend: {}
},
plugins: []
plugins: [require("@tailwindcss/typography")]
};