passwd-mgr/tailwind.config.js
erius d796a3c4e8 Added echo as backend web server
Added an example templ index.templ template
Create tailwind config for building css
Added Makefile to easily deplot and live-reload the app while developing
Added README.md
Added some other web assets in assets directory
2024-06-21 03:23:21 +03:00

9 lines
144 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["views/**/*.templ"],
theme: {
extend: {},
},
plugins: [],
}