mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './*.html', './storages/**/*.html', './pages/**/*.html'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
jost: ['Jost', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|