preactjs / next-plugin-preact

Next.js plugin for preact X
394 stars 9 forks source link

Cannot find module 'preact/compat' when using the next function #48

Open FunctionDJ opened 2 years ago

FunctionDJ commented 2 years ago

I have a Nest.js + Next.js setup where Nest calls the next() function to start the framework where i pass withPreact(). However, i get the error Cannot find module 'preact/compat'. I've followed the instructions from the README. What am i doing wrong?

How i'm calling Next:

      this.server = next({
        dev: !isProduction,
        dir: "./src/client",
        conf: withPreact()
      });