Add Tailwind Typography plugin

This commit is contained in:
2020-12-18 01:22:17 +01:00
parent 10808b66b2
commit 214921a6e8
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" "@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": { "@types/anymatch": {
"version": "1.3.1", "version": "1.3.1",
"resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz",

View File

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

View File

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