0

I merely want to reference React DnD from a webpage using <script> tags - none of this server side business.

Is there a minified version I can download?

Ian Warburton
  • 15,170
  • 23
  • 107
  • 189

1 Answers1

2
<script src="https://unpkg.com/react-dnd@2.5.4/dist/ReactDnD.min.js"></script>

The above link should be the latest version.

ipatch
  • 3,933
  • 8
  • 60
  • 99
  • Epic, thanks. How would one go about finding that link? – Ian Warburton Dec 03 '17 at 22:47
  • 1
    @IanWarburton from the latest articles I have been reading on medium it seems unpkg.com has become the defacto standard for providing UMD build of NPM modules such as React an friends. That being said, I just did a search for `unpkg React DnD` in a search engine. I hope this comment helps. – ipatch Dec 03 '17 at 23:01