Frontends
Using React with Frontends
Using Vite
import { defineConfig } from "vite"
import react from "@vitejs/plugin-react"
export default defineConfig({
plugins: [react()],
base: "/frontends/example_dashboard" <--
})Using Create-React-App
"homepage": "https://glyueprod.examplebank.sandboxbanking.com/frontends/example_dashboard"Using Webpack
export default {
output: {
publicPath: "https://glyueprod.examplebank.sandboxbanking.com/frontends/example_dashboard"
}
}Query Parameters
Code Snippets
Getting the CSRF Token
Logging Out
Executing an Integration
Last updated
Was this helpful?