2016-10-20 18 views
1

私のIonic2アプリにプッシュ通知を追加しようとしています。私はthisに従っています。私のアプリはionic2プッシュドキュメントのページで提案されているように、今、私はこのエラー毎回得続けるionic io initを行う前に、正常に働いていた私はそれは私が私のファイルrollup.config.jsにこれを追加する必要がありました動作させるためにionic serveバンドルに失敗しました: 'CloudModule'がエクスポートされていません

bundle failed: 'CloudModule' is not exported by node_modules/@ionic/cloud-angular/dist/es5/index.js 
      (imported by src/app/app.module.ts). For help fixing this error see https://github.com/rollup/rollup/wiki/Troubleshooting#name-is-not-exported-by-module 

答えて

0

を行いますhere

で提案されているように、これは

ビルド処理が遅くなります場合でも

module.exports = { 

    [...] 
    useStrict: false, 
    [...] 

    plugins: [ 
    ngTemplate(), 
    commonjs({ 
     include: [ 
     [...] 
     'node_modules/@ionic/cloud-angular/**', 
     'node_modules/superagent/**', 
     'node_modules/@ionic/cloud/node_modules/superagent/**', 
     'node_modeule/emitter/**', 
     'node_modules/reduce-component/**', 
     'node_modules/intl/**', 
     'node_modules/**', 
     ], 
     namedExports: { 
      [...] 
     } 
    }), 
    nodeResolve({ 
     useStrict: false, 
     module: true, 
     jsnext: true, 
     main: true, 
     browser: true, 
     extensions: ['.js'] 
    }) 
    ] 

}; 

をnode_modules/@ionic/app-scripts/config/rollup.config.js

関連する問題