Bakhtina Sofya b84cb877be 1st comm | преди 2 седмици | |
---|---|---|
.. | ||
generator | преди 2 седмици | |
LICENSE | преди 2 седмици | |
README.md | преди 2 седмици | |
index.js | преди 2 седмици | |
logo.png | преди 2 седмици | |
package.json | преди 2 седмици | |
prompts.js | преди 2 седмици |
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: {},
},
};