Files
portfolio-redesign/tailwind.config.js
2022-03-12 19:41:39 -07:00

12 lines
219 B
JavaScript

module.exports = {
purge: ['./src/**/*.html', './src/components/**/*.jsx'],
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {},
fontFamily: {
sans: ['Museo Sans']
}
},
plugins: [],
}