[React + webpack] hjs-webpack

时间:2024-10-12 16:37:37

You can easily spend hours configuring the perfect dev environment with all the latest hotness like ES6 (and beyond) support, hot reloading, and a myriad of other features.

webpack.config.js

var getConfig = require('hjs-webpack');

module.exports = getConfig({
in: './src/app.js',
out: 'dist',
clearBeforeBuild: true
});

package.json:

  "scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"deploy": "npm run build && surge -p dist -d somedomain.com"
},