Skip to content

Commit

Permalink
Feature/api (#37)
Browse files Browse the repository at this point in the history
* updated next to 15 and some apis

* some modification

* good changes

* remove any unneeded files and lint fixes

---------

Co-authored-by: Andrew Adhikari <andrew@techvoyager.me>
  • Loading branch information
t-rhex and Andrew Adhikari authored Dec 4, 2024
1 parent 72e4a27 commit 9a991fb
Show file tree
Hide file tree
Showing 137 changed files with 3,885 additions and 22,398 deletions.
2 changes: 2 additions & 0 deletions frontend/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node-options=--no-warnings
legacy-peer-deps=true
15 changes: 14 additions & 1 deletion frontend/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,20 @@ const nextConfig = {
},
],
},
// ... other configurations
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.alias = {
...config.resolve.alias,
punycode: false,
};
config.resolve.fallback = {
...config.resolve.fallback,
punycode: false,
url: false,
};
}
return config;
},
};

export default nextConfig;
Loading

0 comments on commit 9a991fb

Please # to comment.