Skip to content

Instantly share code, notes, and snippets.

@hkhc
Created April 30, 2020 02:05
Show Gist options
  • Save hkhc/b99eac8394a1383fdf038b5a9811207d to your computer and use it in GitHub Desktop.
Save hkhc/b99eac8394a1383fdf038b5a9811207d to your computer and use it in GitHub Desktop.
Webpack config for webpack unicode demo
import _ from 'lodash';
function component() {
const element = document.createElement('div');
element.innerHTML = _.join(['Hello', 'webpack'], ' ');
return element;
}
document.body.appendChild(component());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment