Bakhtina Sofya b84cb877be 1st comm | 2 veckor sedan | |
---|---|---|
.. | ||
generator | 2 veckor sedan | |
LICENSE | 2 veckor sedan | |
README.md | 2 veckor sedan | |
index.js | 2 veckor sedan | |
logo.png | 2 veckor sedan | |
package.json | 2 veckor sedan | |
prompts.js | 2 veckor sedan |
A plugin that adds Tailwind CSS to your vue-cli project.
Inside your vue-cli project folder add the plugin via:
vue add tailwind
Choose what Tailwind config you want to generate:
tailwind.config.js
file where you can define your customizations.tailwind.config.js
file containing the entire default configuration.See Tailwinds configuration guide for more info.
Tailwind CSS will be added as plugins in your PostCSS config.
// postcss.config.js
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};