@nx/remix
Version:
31 lines (30 loc) • 828 B
JSON
{
"$schema": "https://json-schema.org/schema",
"$id": "NxRemixTailwind",
"title": "Add TailwindCSS to a Remix App",
"description": "Setup tailwindcss for a given project.",
"type": "object",
"examples": [
{
"command": "g setup-tailwind --project=myapp",
"description": "Generate a TailwindCSS config for your Remix app"
}
],
"properties": {
"project": {
"type": "string",
"description": "The name of the project to add tailwind to",
"$default": {
"$source": "projectName"
},
"x-prompt": "What project would you like to add Tailwind to?"
},
"skipFormat": {
"type": "boolean",
"description": "Skip formatting files after generator runs",
"default": false,
"x-priority": "internal"
}
},
"required": ["project"]
}