fix: lucide react and offline

This commit is contained in:
Julien Froidefond
2025-04-03 10:23:54 +02:00
parent 9b130f2056
commit fff45628ba
6 changed files with 25 additions and 8 deletions

12
next.config.js Normal file
View File

@@ -0,0 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
};
return config;
},
};
module.exports = nextConfig;