Interface WebDependencyLocatorConfig


@ConfigRoot @ConfigMapping(prefix="quarkus.web-dependency-locator") public interface WebDependencyLocatorConfig
Build time configuration for Web Dependency Locator.
  • Method Summary

    Modifier and Type
    Method
    Description
    The directory in the resources which serves as root for the app assets
    User defined import mappings
    boolean
    If the version reroute is enabled.
    The directory in the resources which serves as root for the web assets
  • Method Details

    • versionReroute

      @WithDefault("true") boolean versionReroute()
      If the version reroute is enabled.
    • importMappings

      @ConfigDocMapKey("module-specifier") Map<String,String> importMappings()
      User defined import mappings
    • webRoot

      @WithDefault("web") String webRoot()
      The directory in the resources which serves as root for the web assets
    • appRoot

      @WithDefault("app") String appRoot()
      The directory in the resources which serves as root for the app assets