Open princepasol16 opened 1 week ago
For importing the moralis module, the Node.js option is not correct.
import is not viable for Node.js, it should be an introduce variable and require()
import Moralis from 'moralis'; should be below: let Moralis = require('moralis').default;
ok tanks
For importing the moralis module, the Node.js option is not correct.
import is not viable for Node.js, it should be an introduce variable and require()
import Moralis from 'moralis'; should be below: let Moralis = require('moralis').default;