|
|
|
|
|
by hsn915
1705 days ago
|
|
esbuild is not really configuration based like webpack. It takes some config options but you either specify them via the command line or write your own script to build up the config object. (they have a js and go api). It's so much nicer to use than all the other bundlers. EDIT: To clarify, the dev experience is: - You start with just the basic bundler with simple options you specify on the command line or maybe in a shell script. - Then you want to do a few more things, so you turn the shell script into a nodejs script (or a Go program). - You get to make the build script as simple or complex as you want. To your own discretion and to fit your use case. |
|