Problems with Meteor deployment related to fibers module

前端 未结 4 1416
借酒劲吻你
借酒劲吻你 2021-02-15 14:45

While trying to deploy meteor, I install node fiber by:

$ cd bundle/server

and then installing fiber

$ npm install fibers
         


        
4条回答
  •  孤街浪徒
    2021-02-15 15:35

    You need to uninstall fibers first to remove the binary that's not compatible with your server's platform.

    cd bundle/server
    npm uninstall fibers 
    npm install fibers
    

    You only need to do this if your server is using a different platform, i.e if your development pc is not ubuntu.

提交回复
热议问题