defineConstants

object

用于配置一些全局变量供代码中进行使用。

配置方式可参考 Webpack DefinePlugin,例如:

  1. module.exports = {
  2. // ...
  3. defineConstants: {
  4. A: '"a"' // JSON.stringify('a')
  5. }
  6. }