A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: some vendor issues

+4 -4
+2 -2
_config.ts
··· 133 133 site.add([".woff2"]); 134 134 135 135 site.remoteFile( 136 - "vendor/98.css/ms_sans_serif.woff2", 136 + "vendor/ms_sans_serif.woff2", 137 137 import.meta.resolve( 138 138 "./node_modules/98.css/fonts/converted/ms_sans_serif.woff2", 139 139 ), 140 140 ); 141 141 142 142 site.remoteFile( 143 - "vendor/98.css/ms_sans_serif_bold.woff2", 143 + "vendor/ms_sans_serif_bold.woff2", 144 144 import.meta.resolve( 145 145 "./node_modules/98.css/fonts/converted/ms_sans_serif_bold.woff2", 146 146 ),
+2 -2
src/themes/webamp/fonts.css
··· 1 1 @font-face { 2 2 font-family: "Pixelated MS Sans Serif"; 3 - src: url("../../fonts/ms_sans_serif.woff2") format("woff2"); 3 + src: url("../../fonts/98.css/ms_sans_serif.woff2") format("woff2"); 4 4 font-weight: normal; 5 5 font-style: normal; 6 6 } 7 7 8 8 @font-face { 9 9 font-family: "Pixelated MS Sans Serif"; 10 - src: url("../../fonts/ms_sans_serif_bold.woff2") format("woff2"); 10 + src: url("../../fonts/98.css/ms_sans_serif_bold.woff2") format("woff2"); 11 11 font-weight: 700; 12 12 font-style: normal; 13 13 }