nuxt-showcase / tailwind.config.js
3v324v23's picture
initial commit: Nuxt showcase app with enhanced functionality
ef4ce16
raw
history blame contribute delete
341 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
colors: {
primary: '#1890ff',
},
},
},
plugins: [],
}