fix playlist preload

This commit is contained in:
Matt Walsh
2025-03-27 10:36:28 -05:00
parent e8f69ce28b
commit 560b51ccee
2 changed files with 2 additions and 2 deletions

View File

@@ -138,7 +138,7 @@ const uploadSources = [
'dist/**', 'dist/**',
'!dist/**/*.map', '!dist/**/*.map',
]; ];
const upload = () => src(uploadSources, { base: './dist' }) const upload = () => src(uploadSources, { base: './dist', encoding: false })
.pipe(s3({ .pipe(s3({
Bucket: 'weatherstar', Bucket: 'weatherstar',
StorageClass: 'STANDARD', StorageClass: 'STANDARD',

View File

@@ -14,7 +14,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="manifest" href="manifest.json" /> <link rel="manifest" href="manifest.json" />
<link rel="icon" href="images/Logo192.png" /> <link rel="icon" href="images/Logo192.png" />
<link rel="preload" href="playlist.json" /> <link rel="preload" href="playlist.json" as="fetch"/>
<meta property="og:image" content="https://weatherstar.netbymatt.com/images/social/1200x600.png"> <meta property="og:image" content="https://weatherstar.netbymatt.com/images/social/1200x600.png">
<meta property="og:image:width" content="1200"> <meta property="og:image:width" content="1200">
<meta property="og:image:height" content="627"> <meta property="og:image:height" content="627">