mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 07:14:28 +08:00
add Angular todo list source code add the example to the existing list on supabase.io add codeowners file for automated assignment fo reviews
18 lines
313 B
JavaScript
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: [],
|
|
}
|