hydrogen/packages/cli/src/commands/create/app/templates/tailwind-config-js.ts
2021-11-04 15:22:30 -07:00

14 lines
267 B
TypeScript

export default function () {
return `
module.exports = {
purge: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
mode: 'jit',
darkMode: false, // or 'media' or 'class'
variants: {
extend: {},
},
plugins: [require('@tailwindcss/typography')],
};
`;
}