diff --git a/Lina/Lina.csproj b/Lina/Lina.csproj
index 7c184af..d9f4f7b 100644
--- a/Lina/Lina.csproj
+++ b/Lina/Lina.csproj
@@ -5,7 +5,7 @@
enable
enable
true
- 1.2.4
+ 1.2.5
TakasakiStudio.Lina
TakasakiStudio
https://github.com/Takasaki-Studio/Lina
diff --git a/Lina/LoaderConfig/LoaderConfigExtension.cs b/Lina/LoaderConfig/LoaderConfigExtension.cs
index 8302fa6..146c5de 100644
--- a/Lina/LoaderConfig/LoaderConfigExtension.cs
+++ b/Lina/LoaderConfig/LoaderConfigExtension.cs
@@ -19,8 +19,8 @@ public static T AddLoaderConfig(this IServiceCollection serviceCollection, st
where T : class
{
var config = new ConfigurationBuilder()
- .UseJsonFile(jsonFileName)
.UseEnvironmentVariables()
+ .UseJsonFile(jsonFileName)
.Build();
serviceCollection.AddSingleton(config);