Skip to content

Commit

Permalink
feat: redirection de a connexion native
Browse files Browse the repository at this point in the history
  • Loading branch information
flodlc committed Jun 1, 2022
1 parent be40654 commit 6ac196d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ui/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ const contentSecurityPolicy = `

/** @type {import('next').NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: "/auth/connexion",
destination: "/",
permanent: true,
},
];
},
reactStrictMode: true,
experimental: {
outputStandalone: true,
Expand Down
File renamed without changes.

0 comments on commit 6ac196d

Please sign in to comment.