UNPKG

preact-material-components

Version:
35 lines 1.96 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title><%= htmlWebpackPlugin.options.title %></title> <meta name="viewport" content="initial-scale=1, maximum-scale=1"> <meta name="keywords" content="preact, material components, preact components"> <meta name="description" content="preact-material-components is a thin opinionless wrapper around material-components-web. Use these components to add material components to your web app, without worrying about the extra code of the the components which you are not using."> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <link rel="shortcut icon" type="image/png" href="favicon.png"> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <link rel="manifest" href="/manifest.json"> <% if (htmlWebpackPlugin.options.manifest.theme_color) { %> <meta name="theme-color" content="<%= htmlWebpackPlugin.options.manifest.theme_color %>"> <% } %> <% for (var chunk of webpack.chunks) { %> <% if (chunk.names.length === 1 && chunk.names[0] === 'polyfills') continue; %> <% for (var file of chunk.files) { %> <% if (htmlWebpackPlugin.options.preload && file.match(/\.(js|css)$/)) { %> <link rel="preload" href="<%= htmlWebpackPlugin.files.publicPath + file %>" as="<%= file.match(/\.css$/)?'style':'script' %>"> <% } else if (file.match(/manifest\.json$/)) { %> <link rel="manifest" href="<%= htmlWebpackPlugin.files.publicPath + file %>"> <% } %> <% } %> <% } %> </head> <body> <%= htmlWebpackPlugin.options.ssr({ url: '/' }) %> <script defer src="<%= htmlWebpackPlugin.files.chunks['bundle'].entry %>"></script> <script>window.fetch||document.write('<script src="<%= htmlWebpackPlugin.files.chunks["polyfills"].entry %>"><\/script>')</script> </body> </html>