Files
supabase/examples/angular-todo-list/tailwind.config.js
geromegrignon 13533229a9 feat: add Angular todo list example
add Angular todo list source code
add the example to the existing list on supabase.io
add codeowners file for automated assignment fo reviews
2021-07-14 23:20:57 +02:00

18 lines
313 B
JavaScript

const { guessProductionMode } = require('@ngneat/tailwind')
module.exports = {
prefix: '',
purge: {
enabled: guessProductionMode(),
content: ['./src/**/*.{html,ts}'],
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}