mirror of
https://github.com/Adamcake/Bolt.git
synced 2026-04-21 17:36:53 -04:00
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
/** eslint-env node */
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
content: ['./src/**/*.{html,js,ts,svelte}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [],
|
|
darkMode: 'selector'
|
|
};
|