Adding request limit to Meteor Settings

I am currently using a package that allows me to log into my application with Azure Active Directory. However, when Azure sends me an access token through the URL, I am hit with a server error.

In production I am able to bypass this error by adding

<security>
    <requestFiltering>
        <requestLimits maxQueryString="20000"/>`
    </requestFiltering>
</security>

into the web.config file, but I am unsure how to do this in development. Currently, I am thinking that there may be something I can pass into my settings.json that will be an equivalent to the production solution, but I am not sure.

Any help is greatly appreciated.