new file: build/asset-manifest.json

new file:   build/index.html
	new file:   build/static/js/main.9a8f7abd.js
	new file:   build/static/js/main.9a8f7abd.js.LICENSE.txt
	new file:   build/static/js/main.9a8f7abd.js.map
	new file:   postcss.config.js
	deleted:    public/favicon.ico
	deleted:    public/logo192.png
	deleted:    public/logo512.png
	deleted:    public/manifest.json
	deleted:    public/robots.txt
	new file:   tailwind.config.js
Build project, delete start favicons
This commit is contained in:
2025-07-19 04:43:00 +05:00
parent 5898bc6d5a
commit f6d512dbde
12 changed files with 88 additions and 28 deletions
@@ -0,0 +1,10 @@
{
"files": {
"main.js": "/static/js/main.9a8f7abd.js",
"index.html": "/index.html",
"main.9a8f7abd.js.map": "/static/js/main.9a8f7abd.js.map"
},
"entrypoints": [
"static/js/main.9a8f7abd.js"
]
}
+1
View File
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>React App</title><script defer="defer" src="/static/js/main.9a8f7abd.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
File diff suppressed because one or more lines are too long
@@ -0,0 +1,60 @@
/**
* @license React
* react-dom-client.production.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-dom.production.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-jsx-runtime.production.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react.production.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* scheduler.production.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* react-router v7.7.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
File diff suppressed because one or more lines are too long
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {}, // подключаем TailwindCSS
autoprefixer: {} // подключаем автопрефиксер
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

-25
View File
@@ -1,25 +0,0 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
-3
View File
@@ -1,3 +0,0 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
+7
View File
@@ -0,0 +1,7 @@
module.exports = {
content: ['./src/**/*.{html,jsx,tsx}',],
theme: {
extend: {},
},
plugins: [],
}