forked from jwplayer/ott-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(project): support old browsers by using @vitejs/plugin-legacy
- Loading branch information
Showing
4 changed files
with
789 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,14 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title><% name %></title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<meta name="description" content="<% description %>" data-react-helmet="true" /> | ||
<meta name="twitter:card" content="summary" data-react-helmet="true" /> | ||
<meta property="og:title" content="<% name %>" data-react-helmet="true" > | ||
<meta property="og:description" content="<% description %>" data-react-helmet="true"> | ||
<meta property="og:image" content="/images/icons/app-icon.png" data-react-helmet="true"> | ||
|
||
<link rel="icon" href="/images/icons/favicon.ico" type="image/x-icon" sizes="any"> | ||
<%- favicons %> | ||
|
||
<!-- Pre-connect JW Player origins --> | ||
<link rel="preconnect" href="https://content.jwplatform.com"/> | ||
<link rel="preconnect" href="https://cdn.jwplayer.com"/> | ||
|
||
<!-- Safari web app --> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
|
||
<!-- Chrome, Firefox OS and Opera --> | ||
<meta name="theme-color" content="#000000"> | ||
<!-- iOS Safari --> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="#000000"> | ||
|
||
<!-- Manifest --> | ||
<link rel="manifest" href="/manifest.json" /> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/src/app/favicon.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite App</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
</html> |
This file contains 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
This file contains 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
Oops, something went wrong.