mirror of
https://github.com/AltarikMC/Launcher
synced 2024-11-24 06:39:50 +01:00
10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [],
|
|
darkMode: 'class'
|
|
}
|