Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,11 @@ node_modules
# yarn files
package-lock.json
yarn.lock
dist/index.html
dist/index.js
dist/index.js.map
dist/redux-oidc-4f1d30a1.js
dist/redux-oidc-4f1d30a1.js.map
dist/silent_renew.html
dist/silent_renew.js
dist/silent_renew.js.map
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ Click on `Logout` to log out again.

Visit <https://redux-oidc-example.herokuapp.com/> for the live demo (might take a while to load).

---
_**Breaking Change:_
- Replaced Webpack with Vite Bundler
- In dev mode, the https server should handle both the html files placed outside. (Need to be validated for the slient renew feature)
- The build works fine, so use the `npm run build` and then `npm run start` to test the application.
- check the `./src/utils/userManager.js` file for how to create a google auth client id by creating a new project.
- use test gmail account for using this example
- Also, see the npm alias in the package.json for how i used the `oidc-client` older js package in place of `oidc-client-ts` as it was not supporting the feature that requires the google auth and youtube api to work.
---

## Usage since redux-oidc v3.0.0-beta.10
`co` has been removed from the peer dependencies. You don't need it anymore for running this library. You can also safely drop `babel-polyfill` from the silent renew script.

Expand Down
Loading