How can I bundle together multiple JS Files? I know I can export functions or classes and import them in other files and webpack will bundle all of them together in one file. But what do i do if I want to import an entire file? Or a framework like Vue?
Asked
Active
Viewed 123 times
0
-
Seems duplicate of `https://stackoverflow.com/questions/28969861/managing-jquery-plugin-dependency-in-webpack` – brk Mar 11 '19 at 10:09
-
Do you want to import this file separately or do you want to include it in your bundle ? – Sylvain Mar 11 '19 at 10:26
-
1I wanted to import them globally. that's the keyword I was missing. my questions were answered there. thank you @brk – Mho Nano Mar 11 '19 at 10:29
-
Possible duplicate of [Managing jQuery plugin dependency in webpack](https://stackoverflow.com/questions/28969861/managing-jquery-plugin-dependency-in-webpack) – Sylvain Mar 11 '19 at 10:35