feat(14): enabling tailwindcss

the command to generate
"tailwindcss -i ./src/input.css -o ./src/main/resources/public/output.css --watch"
and this should be same during dev and in install script,
but. we'll be committing the output.css, let's try that
This commit is contained in:
efim
2023-06-30 17:03:21 +00:00
parent 83c75ad3a9
commit 1c8bc38f29
4 changed files with 561 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,scala}'],
theme: {
extend: {},
},
plugins: [],
}