create-blocklet 0.6.11 → 0.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/public/.gitkeep +0 -0
- package/package.json +1 -1
- package/templates/html-static/app/index.html +1 -0
- package/templates/nextjs-dapp/pages/_app.js +1 -0
- package/templates/nextjs-dapp/pages/index.js +0 -1
- package/templates/react-dapp/package.json +1 -1
- package/templates/react-dapp-ts/index.html +1 -0
- package/templates/react-dapp-ts/package.json +1 -1
- package/templates/react-gun-dapp/package.json +1 -1
- package/templates/react-static/package.json +1 -1
- package/templates/solidjs-dapp/index.html +1 -0
- package/templates/solidjs-dapp/package.json +1 -1
- package/templates/solidjs-static/index.html +1 -0
- package/templates/solidjs-static/package.json +1 -1
- package/templates/svelte-dapp/package.json +1 -1
- package/templates/svelte-static/package.json +1 -1
- package/templates/vue-dapp/package.json +1 -1
- package/templates/vue-static/package.json +1 -1
- package/templates/vue2-dapp/package.json +1 -1
- package/templates/vue2-static/package.json +1 -1
- package/common/public/favicon.ico +0 -0
- package/common/public/robots.txt +0 -3
- package/templates/html-static/app/favicon.ico +0 -0
|
File without changes
|
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" href="/favicon.ico?imageFilter=resize&w=32" />
|
|
5
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
6
7
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
8
|
<link rel="stylesheet" href="./styles/style.css" />
|
|
@@ -7,6 +7,7 @@ function MyApp({ Component, pageProps }) {
|
|
|
7
7
|
<>
|
|
8
8
|
<Head>
|
|
9
9
|
<title>{process.env.APP_TITLE}</title>
|
|
10
|
+
<link rel="icon" href="/favicon.ico?imageFilter=resize&w=32" />
|
|
10
11
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
|
|
11
12
|
<meta name="theme-color" content="#4F6AF5" />
|
|
12
13
|
<meta name="description" content="Web site created using create-blocklet" />
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" href="/favicon.ico?imageFilter=resize&w=32" />
|
|
5
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
|
|
6
7
|
<meta name="theme-color" content="#4F6AF5" />
|
|
7
8
|
<meta name="description" content="Web site created using create-blocklet" />
|
|
Binary file
|
package/common/public/robots.txt
DELETED
|
Binary file
|