|
|
6 dní pred | |
|---|---|---|
| public | 6 dní pred | |
| src | 6 dní pred | |
| .env | 1 týždeň pred | |
| .gitignore | 1 týždeň pred | |
| README.md | 1 týždeň pred | |
| babel-plugin-macros.config.js | 1 týždeň pred | |
| capacitor.config.json | 1 týždeň pred | |
| craco.config.js | 1 týždeň pred | |
| jsconfig.json | 1 týždeň pred | |
| package-lock.json | 1 týždeň pred | |
| package.json | 1 týždeň pred | |
| react_game-web_dev2.code-workspace | 1 týždeň pred |
First, install the dependencies using npm install --legacy-peer-deps or yarn install.
Then, run the development server:
yarn start
# OR
npm run start
Then, open http://localhost:3000 with your browser to see the result (if it doesn't open automatically).
You can start editing pages or components. The page auto-updates as you edit and save a file.
To avoid any issues, please make sure you have the latest stable version of Node.js installed.
If you need to have multiple versions of Node.js installed, you can use nvm.
Liga Dashboard Template is based on Create-React-App template.
startRuns the app in the development mode. Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.\ You may also see any lint errors in the console.
buildBuilds the app for production to the build folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
gzipBuilds the app for production to the build folder and compresses it with gzip and brotli.\
If your server is configured to serve pre-compressed files, you can use this command to reduce the transfer size up to 70%.
ejectNote: this is a one-way operation. Once you eject, you can't go back!
If you aren't satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them.
You can import selection.json located in src/fonts/icomoon back to the IcoMoon app using the Import Icons button (or via Main Menu → Manage Projects) to retrieve icon selection.
To use Google Analytics, you need to create a new project in Google Analytics and get the tracking ID.
Then, create a new file called .env.local in the root directory of your project and add the following line to it:
REACT_APP_PUBLIC_GA=YOUR_TRACKING_ID
.
├── public # static files
│ ├── favicon.ico
│ ├── index.html # main HTML file
│ ├── robots.txt
├── src # source files
│ ├── app # redux store
│ ├── assets # static assets
│ ├── components # reusable components shared across the app
│ ├── constants
│ ├── contexts # context providers
│ ├── db # fake database
│ ├── features # redux features (slices)
│ ├── fonts
│ ├── hooks # custom hooks
│ ├── layout # main layout components (header, sidebar, etc.)
│ ├── pages
│ ├── styles # global styles
│ ├── ui # reusable UI components
│ ├── utils # helper functions
│ ├── widgets # reusable widgets
│ ├── App.js # main app component
│ ├── index.js # app entry point
│ ├── layouts.js # layout object for react-grid-layout
│ ├── style.scss # global app styles
├── .htaccess # htaccess file for Apache server
├── babel-plugin-macros.config.js # babel macros config (for styled-components)
├── craco.config.js # custom CRA config
├── jsconfig.json # jsconfig for IDE
├── package.json