mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 08:04:21 +00:00
Include go files in tailwind processing (#29686)
We need to scan `.go` files for tailwind classes. Does not seem to affect build time much luckily. Fixes: https://github.com/go-gitea/gitea/pull/29678#discussion_r1518448600 Verified via `rg tw-object-contain public/assets/css/index.css`. --------- Co-authored-by: Giteabot <teabot@gitea.io> (cherry picked from commit 1695a5ac74afc51f38fd3a1def76cff6ba8d8641)
This commit is contained in:
parent
249e26fdae
commit
01bf3a82cf
|
@ -31,6 +31,9 @@ export default {
|
|||
isProduction && '!./web_src/js/standalone/devtest.js',
|
||||
'!./templates/swagger/v1_json.tmpl',
|
||||
'!./templates/user/auth/oidc_wellknown.tmpl',
|
||||
'!**/*_test.go',
|
||||
'!./modules/{public,options,templates}/bindata.go',
|
||||
'./{build,models,modules,routers,services}/**/*.go',
|
||||
'./templates/**/*.tmpl',
|
||||
'./web_src/js/**/*.{js,vue}',
|
||||
].filter(Boolean),
|
||||
|
|
Loading…
Reference in a new issue