mrpmorris / Fluxor

Fluxor is a zero boilerplate Flux/Redux library for Microsoft .NET and Blazor.
MIT License
1.25k stars 144 forks source link

Conditional Redux package in examples + docs #258

Closed mrpmorris closed 2 years ago

mrpmorris commented 2 years ago

Good practice is to not allow ReduxDevTools in any environment other than Debug

    <ItemGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
        <PackageReference Include="Fluxor.Blazor.Web.ReduxDevTools" Version="4.0.0" />
    </ItemGroup>

Put this in the examples source, and mention it in the docs.