commit
a5438fe315
4 changed files with 10 additions and 3 deletions
|
@ -21,8 +21,7 @@ export default function SearchPage(props: Props) {
|
||||||
const urlParams = new URLSearchParams(search);
|
const urlParams = new URLSearchParams(search);
|
||||||
const urlQuery = urlParams.get('q');
|
const urlQuery = urlParams.get('q');
|
||||||
const isValid = isURIValid(urlQuery);
|
const isValid = isURIValid(urlQuery);
|
||||||
console.log({ isValid });
|
|
||||||
console.log({ urlQuery });
|
|
||||||
let uri;
|
let uri;
|
||||||
let isChannel;
|
let isChannel;
|
||||||
let label;
|
let label;
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 656 KiB After Width: | Height: | Size: 855 KiB |
|
@ -1,8 +1,12 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>lbry.tv</title>
|
<title>lbry.tv</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta property="og:url" content="https://beta.lbry.tv" />
|
||||||
|
<meta property="og:title" content="LBRY On The Web" />
|
||||||
|
<meta property="og:description" content="All your favorite LBRY content in your browser." />
|
||||||
|
<meta property="og:image" content="/og.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -52,6 +52,10 @@ const webConfig = {
|
||||||
from: `${STATIC_ROOT}/img/favicon.ico`,
|
from: `${STATIC_ROOT}/img/favicon.ico`,
|
||||||
to: `${DIST_ROOT}/web/favicon.ico`,
|
to: `${DIST_ROOT}/web/favicon.ico`,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
from: `${STATIC_ROOT}/img/og.png`,
|
||||||
|
to: `${DIST_ROOT}/web/og.png`,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
from: `${WEB_PLATFORM_ROOT}/server.js`,
|
from: `${WEB_PLATFORM_ROOT}/server.js`,
|
||||||
to: `${DIST_ROOT}/web/server.js`,
|
to: `${DIST_ROOT}/web/server.js`,
|
||||||
|
|
Loading…
Reference in a new issue