mirror of
https://github.com/Xevion/rust-sdl2-emscripten.git
synced 2025-12-06 07:16:14 -06:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./**/*.{html,js,rs}"],
|
|
theme: {
|
|
fontFamily: {
|
|
'mono': ['"Liberation Mono"', 'monospace'],
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|