标签:-- import auto ack 根目录 util ref top bsp
npx tailwind init --full
"postcss": { "plugins": { "tailwindcss": "./tailwind.config.js", "autoprefixer": {} } },
<style> @import "../node_modules/tailwindcss/base.css"; @import "../node_modules/tailwindcss/components.css"; @import "../node_modules/tailwindcss/utilities.css"; </style>
theme: { screens: { sm: ‘640px‘, md: ‘768px‘, lg: ‘1024px‘, xl: ‘1280px‘, }, colors: { transparent: ‘transparent‘, black: ‘#000‘, white: ‘#fff‘, gray: { // 100: ‘#f7fafc‘, 200: ‘#e8e8ea‘, 300: ‘#e5e5e5‘, // 900: ‘#1a202c‘, }, red: { default: ‘#db0300‘, dark: ‘#c40400‘, }, },
标签:-- import auto ack 根目录 util ref top bsp
原文地址:https://www.cnblogs.com/fenle/p/10976466.html