Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created January 1, 2021 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YonatanKra/58141f2953dd2720b354a439db6864cf to your computer and use it in GitHub Desktop.
Save YonatanKra/58141f2953dd2720b354a439db6864cf to your computer and use it in GitHub Desktop.
module.exports = (config, context) => {
return {
...config,
module: {
...config.module,
rules: [
...config.module.rules,
{
test: /\.html$/i,
use: 'raw-loader',
},
],
},
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment