diff --git a/.github/Architecture.md b/.github/Architecture.md index d4920b2eb..3e377957e 100644 --- a/.github/Architecture.md +++ b/.github/Architecture.md @@ -216,7 +216,6 @@ | |- 📜 yarn.lock | |- 📜 .eslintignore | |- 📜 next-env.d.ts -| |- 📜 babel.config.js | |- 📜 next.config.js ``` diff --git a/frontend/babel.config.js b/frontend/babel.config.js deleted file mode 100644 index 6fdb8c1ba..000000000 --- a/frontend/babel.config.js +++ /dev/null @@ -1,14 +0,0 @@ -module.exports = { - presets: [ - [ - "next/babel", - { - "preset-env": { targets: { node: "current" } }, - "transform-runtime": { regenerator: true }, - "styled-jsx": {}, - "class-properties": {}, - }, - ], - ], - plugins: [], -}; diff --git a/frontend/next.config.js b/frontend/next.config.js index d442086b0..089c75cb2 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -23,7 +23,7 @@ const nextConfig = { }, { source: "/api/training/:path*", - destination: "http://localhost:8000/api/:path*", + destination: "http://127.0.0.1:8000/api/:path*", }, ], };