mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-03 05:10:16 +03:00
19 lines
532 B
Java
19 lines
532 B
Java
package stirling.software.SPDF.controller.web;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@Controller
|
|
public class ReactRoutingController {
|
|
|
|
@GetMapping("/{path:^(?!api|static|robots\\.txt|favicon\\.ico)[^\\.]*$}")
|
|
public String forwardRootPaths() {
|
|
return "forward:/index.html";
|
|
}
|
|
|
|
@GetMapping("/{path:^(?!api|static)[^\\.]*}/{subpath:^(?!.*\\.).*$}")
|
|
public String forwardNestedPaths() {
|
|
return "forward:/index.html";
|
|
}
|
|
}
|