28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 | 
						|
    <link rel="manifest" href="<%= BASE_URL %>manifest.json">
 | 
						|
    <meta name="renderer" content="webkit">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
 | 
						|
    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
 | 
						|
    <title><%= webpackConfig.name %></title>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div id="app"></div>
 | 
						|
    <!-- built files will be auto injected -->
 | 
						|
    <script>
 | 
						|
      if ('serviceWorker' in navigator) {
 | 
						|
        navigator.serviceWorker.register('<%= htmlWebpackPlugin.options.pwaPath %>sw.js').then(function(registration) {
 | 
						|
          // Registration Success
 | 
						|
          console.log('[serviceWorker]: registration successful with scope: ', registration.scope)
 | 
						|
        }).catch(function(err) {
 | 
						|
          // Registration failed :(
 | 
						|
          console.log('[serviceWorker] registration failed', err)
 | 
						|
        })
 | 
						|
      }
 | 
						|
    </script>
 | 
						|
  </body>
 | 
						|
</html>
 |