diff options
| author | 2025-04-22 12:20:54 +0200 | |
|---|---|---|
| committer | 2025-04-22 12:20:54 +0200 | |
| commit | 075cae3d55197b96d997d72cfb498c870788453a (patch) | |
| tree | 8df8ac8bcf2addd962b2b15927a1e96302c9a0c8 /internal/web/web.go | |
| parent | [bugfix] Use util.IsNil for checking DomainPermission (#4040) (diff) | |
| download | gotosocial-075cae3d55197b96d997d72cfb498c870788453a.tar.xz | |
[chore/frontend] Reorder JS a little bit to avoid visible text changes (#4039)
Diffstat (limited to 'internal/web/web.go')
| -rw-r--r-- | internal/web/web.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/web/web.go b/internal/web/web.go index 15814942a..5bccca06d 100644 --- a/internal/web/web.go +++ b/internal/web/web.go @@ -67,9 +67,9 @@ const ( cssSettings = distPathPrefix + "/settings-style.css" cssTag = distPathPrefix + "/tag.css" - jsFrontend = distPathPrefix + "/frontend.js" // Progressive enhancement frontend JS. - jsBlurhash = distPathPrefix + "/blurhash.js" // Blurhash rendering JS. - jsSettings = distPathPrefix + "/settings.js" // Settings panel React application. + jsFrontend = distPathPrefix + "/frontend.js" // Progressive enhancement frontend JS. + jsFrontendPrerender = distPathPrefix + "/frontend_prerender.js" // Frontend JS that should run before page renders. + jsSettings = distPathPrefix + "/settings.js" // Settings panel React application. ) type Module struct { |
