fork and modify dockerfile for prod

This commit is contained in:
2024-02-09 10:53:19 +01:00
commit 4d231a3ce8
21 changed files with 721 additions and 0 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
//tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {},
borderWidth: {
'3': '3px',
},
},
},
variants: {
extend: {},
},
plugins: [],
}