rsnext/examples/with-sfcc/tailwind.config.js
Lee Robinson ad61e84101
Update SFCC example to use TypeScript + @next/font (#42865)
This is now ready for review.

Co-authored-by: Hassan El Mghari <hassan4709@gmail.com>
2022-11-14 09:46:31 -06:00

16 lines
344 B
JavaScript

/** @type {import('tailwindcss').Config} \*/
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
sans: ['var(--font-montserrat)'],
},
},
future: {
hoverOnlyWhenSupported: true,
},
plugins: [require('@tailwindcss/aspect-ratio')],
}