Update README.md

This commit is contained in:
Namhyeon, Go 2025-12-08 01:55:10 +09:00
parent 6839b8edd1
commit ec79f1ab06

View File

@ -51,6 +51,7 @@ private static void InitializeAssemblyLoader()
Type loaderType = phantomAsm.GetType("Catswords.Phantomizer.AssemblyLoader", true); Type loaderType = phantomAsm.GetType("Catswords.Phantomizer.AssemblyLoader", true);
loaderType.GetProperty("BaseUrl")?.SetValue(null, GetAppConfig("AssemblyBaseUrl")); // Set your CDN base URL loaderType.GetProperty("BaseUrl")?.SetValue(null, GetAppConfig("AssemblyBaseUrl")); // Set your CDN base URL
loaderType.GetProperty("LoaderNamespace")?.SetValue(null, typeof(Program).Namespace);
loaderType.GetProperty("AppName")?.SetValue(null, "WelsonJS"); // Set your application name loaderType.GetProperty("AppName")?.SetValue(null, "WelsonJS"); // Set your application name
loaderType.GetMethod("Register")?.Invoke(null, null); loaderType.GetMethod("Register")?.Invoke(null, null);