mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-18 10:00:18 -04:00
12 lines
204 B
JavaScript
12 lines
204 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./templates/**/*.html",
|
|
"./static/src/**/*.js"
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|