Browse Source

fix: remove SRI from setup view template

NGPixel 5 years ago
parent
commit
1c60d98d17
1 changed files with 0 additions and 19 deletions
  1. 0 19
      dev/templates/setup.pug

+ 0 - 19
dev/templates/setup.pug

@@ -23,38 +23,19 @@ html
 
     //- CSS
     <% for (var index in htmlWebpackPlugin.files.css) { %>
-      <% if (htmlWebpackPlugin.files.cssIntegrity) { %>
     link(
       type='text/css'
       rel='stylesheet'
       href='<%= htmlWebpackPlugin.files.css[index] %>'
-      integrity='<%= htmlWebpackPlugin.files.cssIntegrity[index] %>'
-      crossorigin='<%= webpackConfig.output.crossOriginLoading %>'
     )
-      <% } else { %>
-    link(
-      type='text/css'
-      rel='stylesheet'
-      href='<%= htmlWebpackPlugin.files.css[index] %>'
-    )
-      <% } %>
     <% } %>
 
     //- JS
     <% for (var index in htmlWebpackPlugin.files.js) { %>
-      <% if (htmlWebpackPlugin.files.cssIntegrity) { %>
-    script(
-      type='text/javascript'
-      src='<%= htmlWebpackPlugin.files.js[index] %>'
-      integrity='<%= htmlWebpackPlugin.files.jsIntegrity[index] %>'
-      crossorigin='<%= webpackConfig.output.crossOriginLoading %>'
-      )
-      <% } else { %>
     script(
       type='text/javascript'
       src='<%= htmlWebpackPlugin.files.js[index] %>'
       )
-      <% } %>
     <% } %>
 
   body