Skip to content

ssx/v1.1.1

Compare
Choose a tag to compare
@skgbafa skgbafa released this 13 Dec 19:09
· 83 commits to main since this release
bce5efc

Patch Changes

Update the ssx configuration to accept updated parameters for the server routes. These routes can now accept a more complex configuration, allow for different connections to different backends.

const ssx = new SSX({
    providers: { 
        server: { 
            host: 'http://ssx-server-host.com' 
            routes: {
                nonce:  {
                    url: '/ssx-custom-nonce',
                    method: 'post'
                }
            }
        } 
    }
});