Skip to content

Commit

Permalink
Merge pull request #14 from ifspcbt-devspace/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
oproprioleonardo authored Sep 25, 2024
2 parents 8ce5f7c + 07adbf7 commit 9973b5e
Show file tree
Hide file tree
Showing 13 changed files with 482 additions and 47 deletions.
33 changes: 22 additions & 11 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,27 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
reactStrictMode: false,
async redirects() {
return [
{
source: '/ticket/:id/check',
destination: '/admin/ticket/check-in/:id',
permanent: false,
},
]
},
output: "standalone",
reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'eventos.ifspcbt.shop',
port: '',
pathname: '/api/v1/**',
},
],
},
async redirects() {
return [
{
source: '/ticket/:id/check',
destination: '/admin/ticket/check-in/:id',
permanent: false,
},
]
},

};

export default nextConfig;
Loading

0 comments on commit 9973b5e

Please sign in to comment.