Files
pc-10588/tailwind.config.cjs

26 lines
453 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{vue,js,ts}',
'./components/**/*.{vue,js,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}'
],
theme: {
extend: {
colors: {
gov: {
blue: '#1E6FB5',
teal: '#2BA69A'
}
}
}
},
corePlugins: {
preflight: false
},
plugins: []
}