mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 00:43:43 +08:00
13 lines
376 B
JavaScript
13 lines
376 B
JavaScript
import deprecated from "discourse-common/lib/deprecated";
|
|
import getUrl from "discourse-common/lib/get-url";
|
|
import { registerRawHelper } from "discourse-common/lib/helpers";
|
|
|
|
registerRawHelper("base-url", baseUrl);
|
|
|
|
export default function baseUrl() {
|
|
deprecated("Use `{{base-path}}` instead of `{{base-url}}`", {
|
|
id: "discourse.base-url",
|
|
});
|
|
return getUrl("");
|
|
}
|