未捕获的TypeError:$ r.Version不是构造函数

时间:2017-10-14 07:33:06

标签: node.js angular heroku webpack

我正面临来自Webpack为Angular4项目生成的构建中的这个意外问题。以下是我的add_filter( 'wp_footer', 'custom_checkout_script' ); function custom_checkout_script( ){ if( ! is_checkout() ) return; ?> <script type="text/javascript"> jQuery(function($){ var events = 'update_checkout', billingFields = '#billing_country_field,#billing_address_1_field,#billing_address_2_field'; billingFields += ',#billing_city_field,#billing_state_field,#billing_postcode_field'; $('body').on( events, function(){ $(billingFields).hide( 0,function(){ $('form.checkout.woocommerce-checkout').css('visibility','visible').fadeIn({ duration: 1000 }); }); }); }); </script> <?php } 文件的一部分。

项目后端是在nodejs中开发的,但我认为这不会导致问题,目前我正在Heroku环境中部署它。

Heroku Link

构建在本地计算机上完美运行,但它无法在实时环境中启动。

package.json

请协助, 提前谢谢。

0 个答案:

没有答案