Skip to content

Instantly share code, notes, and snippets.

@siakaramalegos
Created February 2, 2018 16:22
Show Gist options
  • Save siakaramalegos/360d206c1ecb8940e8e4348a095f708d to your computer and use it in GitHub Desktop.
Save siakaramalegos/360d206c1ecb8940e8e4348a095f708d to your computer and use it in GitHub Desktop.
webpack.config.js HTML loader snippet
// webpack.config.js HTML loader snippet
{
test: /\.html$/,
exclude: [nodeModulesPath],
use: [
{ loader: 'file-loader', options: { name: '[name].[ext]' } },
'extract-loader',
{ loader: 'html-loader', options: { minimize: true } },
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment