zl程序教程

您现在的位置是:首页 >  前端

当前栏目

[React + webpack] hjs-webpack

2023-09-14 09:00:55 时间

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"
  },