Blanked is a Nuxt module to improve your Nuxt workflow. It's a simple module to add everything you need to your Nuxt app, including:
TailwindCSS
From
{
"name": "new-blanked-project",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate"
},
"devDependencies": {
"nuxt": "latest",
"@nuxtjs/color-mode": "latest",
"@nuxtjs/tailwindcss": "latest",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@egoist/tailwindcss-icons": "^1.7.2",
"@iconify-json/heroicons": "^1.1.19",
"@iconify-json/lucide": "^1.1.154",
"tailwindcss": "^3.4.1",
"nuxt-icon": "^0.6.8"
}
}
To
{
"name": "new-blanked-project",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate"
},
"devDependencies": {
"nuxt": "latest",
"blanked": "latest"
}
}