migrating to react and nextjs

This commit is contained in:
lucas.oskorep
2023-07-10 20:51:10 -04:00
parent a287cccb38
commit aad7babb2c
55 changed files with 29540 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
// rewrites: async () => {
// return [
// {
// source: '/api/:path*',
// destination:
// process.env.NODE_ENV === 'development'
// ? 'http://127.0.0.1:8000/api/:path*'
// : '/api/',
// },
// ]
// },
}
module.exports = nextConfig