Skip to content

Instantly share code, notes, and snippets.

@leocristofani
Last active December 19, 2018 12:25
Show Gist options
  • Save leocristofani/7a0584661e4c6b28cf14c4b30a54b18e to your computer and use it in GitHub Desktop.
Save leocristofani/7a0584661e4c6b28cf14c4b30a54b18e to your computer and use it in GitHub Desktop.
Micro-frontend in practice - Expose library as UMD from Webpack
module.exports = {
mode: 'production',
entry: `../client/src/embed.js`,
output: {
library: 'Artists',
libraryTarget: 'umd',
filename: 'index.[hash].js',
path: path.resolve(__dirname, '../server/public/embed')
},
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment