Home  >  Q&A  >  body text

javascript - How to solve this webpack packaging warning?

高洛峰高洛峰2663 days ago876

reply all(1)I'll reply

  • 滿天的星座

    滿天的星座2017-07-05 10:56:24

    Is the module name written in the wrong case? For example, it should be
    import { Deposit } from './fundmgmt/Deposit'
    You wrote
    import { Deposit } from './fundmgmt/deposit'
    on Windows The file path is not case-sensitive. The compilation may pass, but it may not work on Linux. So this is a warning.

    reply
    0
  • Cancelreply