Last active
December 15, 2017 05:51
-
-
Save hach-que/debe8aeba2bf790763b8cfaccddf0924 to your computer and use it in GitHub Desktop.
_ScriptsTemplate.cshtml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %> | |
<script src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script> | |
<% } %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% 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