Git Product home page Git Product logo

Comments (9)

vkarpov15 avatar vkarpov15 commented on May 26, 2024

What does your Webpack config look like? Are you using Next.js? We'll need a more complete repro to figure this out, because this is a Webpack error and your code looks like it is from Next.js' samples repo.

from mongoose.

Anonymous7code avatar Anonymous7code commented on May 26, 2024

I'm using NextJS 14 trying to connect to MongoDB via mongoose below is the connection code

import mongoose from "mongoose";

const MONGODB_URI = process.env.NEXT_PUBLIC_MONGODB_URI;
if (!MONGODB_URI) {
  throw new Error(
    "Please define the MONGODB_URI environment variable inside .env"
  );
}

let cached = (global as any).mongoose || { conn: null, promise: null };

export const connectToDatabase = async () => {
  if (cached.conn) return cached.conn;
  
  if (!cached.promise) {
    const opts = {
      bufferCommands: false,
      dbName: "festifusion",
    };

    cached.promise = mongoose.connect(MONGODB_URI, opts).then((mongoose) => {
      return mongoose;
    });
  }
  cached.conn = await cached.promise;
  return cached.conn;
};

and the next.config.js file looks like it compiles well but the issue is still there

/** @type {import('next').NextConfig} */
const nextConfig = {
  webpack: (config) => {
    return config;
  },
  images: {
    domains: ["utfs.io"],
    remotePatterns: [
      {
        protocol: "https",
        hostname: "utfs.io",
        port: "",
      },
    ],
  },
};

module.exports = nextConfig;

if I use

webpack: (config) => {
  config.experiments = {
    topLevelAwait: true
  };
  return config;
},

then it takes indefinite time to compile the code. I also took a reference from Mongoose Documentation on using with NextJs but still the issue is there I've attached log file for reference purpose. Let me know if you require more details.
localhost-1705844188011.log

from mongoose.

vkarpov15 avatar vkarpov15 commented on May 26, 2024

Did you add the following to your Next.js config?

const nextConfig = {
  experimental: {
    esmExternals: "loose", // <-- add this
    serverComponentsExternalPackages: ["mongoose"] // <-- and this
  }
// ...

from mongoose.

Anonymous7code avatar Anonymous7code commented on May 26, 2024

Yes by adding this also the issue is not solved the whole connection.tsx code has been mentioned above and by adding toplevelawait to true in webpack config it takes infinite amount of time to compile.

from mongoose.

pskd73 avatar pskd73 commented on May 26, 2024

Any update here? I am also stuck with same issue. I have added experimental tags in next config, moved the connect statement inside a function. Nothing works.

    "mongoose": "^7.4.2",
    "next": "14.1.0",

Help would be great!

from mongoose.

vkarpov15 avatar vkarpov15 commented on May 26, 2024

We're unable to repro, this GitHub repo demonstrates that Mongoose works fine with Next.js 14. Please fork and modify this repo to demonstrate the issue you're seeing.

from mongoose.

github-actions avatar github-actions commented on May 26, 2024

This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 5 days

from mongoose.

skylie628 avatar skylie628 commented on May 26, 2024

in my case, because mongoose does not currently support Next Edge Runtime, so just remove line export const runtime = "edge" and everything work well

from mongoose.

Anonymous7code avatar Anonymous7code commented on May 26, 2024

I now works by adding

const nextConfig = {
webpack: (config) => {
    return config;
  },
experimental: {
    esmExternals: "loose", // <-- add this
   serverComponentsExternalPackages: ["mongoose"] 
}
}

just cleared the cache and deleted package-lock.json and node_modules not with the same code it works!! Thanks for help :)

from mongoose.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.