Skip to content

Instantly share code, notes, and snippets.

@Magellol
Last active July 15, 2017 20:41
Show Gist options
  • Save Magellol/23b76a75d00d52c5a924b1311bd36358 to your computer and use it in GitHub Desktop.
Save Magellol/23b76a75d00d52c5a924b1311bd36358 to your computer and use it in GitHub Desktop.
Example of a webpack configuration to get workers code transpiled. Hint: "Rule.enforce".
{
test: /\.js$/,
use: [
{
loader: 'babel-loader',
options: {
// Babel loader options
},
},
],
},
{
test: /-worker\.js$/,
enforce: 'post',
use: [
{
loader: 'worker-loader',
options: {
// Worker loader options
},
},
],
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment