Skip to content
This repository has been archived by the owner on Jul 21, 2024. It is now read-only.

Commit

Permalink
🐛Fixed frontend load error on jar
Browse files Browse the repository at this point in the history
  • Loading branch information
eritpchy committed Dec 24, 2023
1 parent 33c7c9a commit 1859c5e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
Expand All @@ -30,7 +31,7 @@
import java.util.Map;

@EnableScheduling
@SpringBootApplication
@SpringBootApplication(exclude = {ErrorMvcAutoConfiguration.class})
@RegisterReflectionForBinding({
PathInfo.class,
AliyunDriveProperties.class,
Expand Down

0 comments on commit 1859c5e

Please sign in to comment.