apache / incubator-weex-loader

Apache License 2.0
65 stars 32 forks source link

Doesn't work with other loaders ? #58

Open zhoukekestar opened 7 years ago

zhoukekestar commented 7 years ago

Doesn't work with other loaders like: string-replace-loader.

Webpack config file:

use: [
  {
    loader: 'weex-loader',
  },
  {
    loader: 'string-replace-loader',
    query: {
      search: 'old-var-name',
      replace: 'new-var-name',
    },
  },
],