1 Star 0 Fork 0

shawn / vue多项目结构

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tailwind.config.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
lishuai 提交于 2020-05-25 11:03 . 结构优化
// todo https://tailwindcss.com/docs/customizing-colors
module.exports = {
prefix: '', //添加前缀
important: false,// 该important选项使您可以控制是否应将Tailwind的实用程序标记为!important。启用此选项不会自动将您自己的任何自定义实用程序标记为!important。
purge: [ // 删除未使用的CSS
'./src/**/*.html',
'./src/**/*.vue',
'./src/**/*.jsx',
],
theme: {
extend: { // 扩展默认调色板
colors: { // todo https://tailwindcss.com/docs/customizing-colors
"main-colour": '#8ccdae',
},
spacing:{ // todo https://tailwindcss.com/docs/customizing-spacing
}
},
},
variants: {
backgroundColor: ['responsive', 'hover', 'focus', 'active','odd', 'even'],
borderWidth: ['responsive', 'first','last', 'hover', 'focus','odd', 'even'],
textColor: ['responsive', 'hover', 'focus', 'group-hover'],
borderColor: ['responsive', 'hover', 'focus', 'focus-within'],
},
plugins: [
require('tailwindcss'),
require('autoprefixer'),
],
}
JavaScript
1
https://gitee.com/lishuaistart/vue_multi_project_structure.git
git@gitee.com:lishuaistart/vue_multi_project_structure.git
lishuaistart
vue_multi_project_structure
vue多项目结构
master

搜索帮助