Skip to content

Instantly share code, notes, and snippets.

@hach-que
Last active December 15, 2017 05:51
Show Gist options
  • Save hach-que/debe8aeba2bf790763b8cfaccddf0924 to your computer and use it in GitHub Desktop.
Save hach-que/debe8aeba2bf790763b8cfaccddf0924 to your computer and use it in GitHub Desktop.
_ScriptsTemplate.cshtml
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
<script src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
<% } %>
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
<% for (var css in htmlWebpackPlugin.files.chunks[chunk].css) { %>
<link rel="stylesheet" href="<%= htmlWebpackPlugin.files.chunks[chunk].css[css] %>" />
<% } %>
<% } %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment