Home > OS >  Not able to import package in Next js
Not able to import package in Next js

Time:09-19

I installed the Jodit Editor using npm -i jodit-react. The package is added in the node modules but I am unable to import it.

This is is how I am importing the package import JoditEditor from "../../node_modules/jodit-react/index";

And this is the error I am getting: Module not found: Can't resolve '../../node_modules/jodit-react/index'

Screenshot of the error: error picture

CodePudding user response:

Change this line:

import JoditEditor from "../../node_modules/jodit-react/index";

To:

import JoditEditor from 'jodit-react';

You can take a look at this live working example with Next.js

  • Related