feat: enabling TailwindCSS styling

with manual running of cli:
tailwindcss -i ./src/input.css -o ./dist/output.css --watch
This commit is contained in:
efim
2023-06-25 20:06:30 +00:00
parent 98d6f77014
commit fd75be6abe
5 changed files with 32 additions and 2 deletions

View File

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