Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jfa-go/blame/commit/8ac3bb97111514e848fcb9c23d0d891962742359/site/tailwind.config.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
let colors = require ( "tailwindcss/colors" )
let dark = require ( "../css/dark" ) ;
module . exports = {
content : [ "./safelist.html" , "./index.html" , "./out/main.js" ] ,
darkMode : 'class' ,
important : true ,
theme : {
extend : {
keyframes : {
'fade-in' : {
'0%' : {
opacity : '0'
} ,
'100%' : {
opacity : '1'
}
} ,
'fade-out' : {
'0%' : {
opacity : '1'
} ,
'100%' : {
opacity : '0'
}
} ,
} ,
animation : {
'fade-in' : 'fade-in 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)' ,
'fade-out' : 'fade-out 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)'
} ,
colors : {
neutral : colors . slate ,
positive : colors . green ,
urge : colors . violet ,
warning : colors . yellow ,
info : colors . blue ,
critical : colors . red ,
d _neutral : dark . d _neutral ,
d _positive : dark . d _positive ,
d _urge : dark . d _urge ,
d _warning : dark . d _warning ,
d _info : dark . d _info ,
d _critical : dark . d _critical
}
}
} ,
safelist : [ "block" , "animate-fade-in" , "animate-fade-out" ] ,
plugins : [ require ( "a17t" ) ] ,
}