giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
12 lines
590 B
TypeScript
12 lines
590 B
TypeScript
// This file is the entry point for the code which should block the page rendering, it is compiled by our "iife" vite plugin
|
|
|
|
// bootstrap module must be the first one to be imported, it handles global errors
|
|
import './bootstrap.ts';
|
|
|
|
// many users expect to use jQuery in their custom scripts (https://docs.gitea.com/administration/customizing-gitea#example-plantuml)
|
|
// so load globals (including jQuery) as early as possible
|
|
import './globals.ts';
|
|
|
|
import './webcomponents/index.ts';
|
|
import './modules/user-settings.ts'; // templates also need to use localUserSettings in inline scripts
|