0
與browserify,我試圖只需要在開發時模塊。出於某種原因,它也一直被納入生產。有條件需要browserify
NPM腳本:
"start": "export NODE_ENV=development&& grunt watch & grunt serve",
"prod": "export NODE_ENV=production&& grunt prod"
組件需要:
const isProduction = process.env.NODE_ENV === 'production';
require('animation.gsap');
if (!isProduction) {
require('debug.addIndicators');
}