Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VITE_APP_BASE_API=/api
VITE_APP_BASE_API=http://localhost:5000
VITE_APP_HOMEPAGE=/dashboard/workbench
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ module.exports = {
'no-param-reassign': 'off',
'space-before-function-paren': 'off',
'class-methods-use-this': 'off',
'consistent-return': 'off',

'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/interactive-supports-focus': 'off',
Expand Down
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "skillrazr-admin"
}
}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"i18n-ally.keystyle": "flat",
"i18n-ally.sortKeys": true,
"i18n-ally.sourceLanguage": "en_US",
"i18n-ally.displayLanguage": "zh_CN",
"i18n-ally.displayLanguage": "en_US",
}
Comment on lines +26 to 27
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix the syntax error in the JSON file.

-  "i18n-ally.displayLanguage": "en_US",
+  "i18n-ally.displayLanguage": "en_US"
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
"i18n-ally.displayLanguage": "en_US",
}
"i18n-ally.displayLanguage": "en_US"
Tools
Biome

[error] 26-27: Expected a property but instead found '}'. (parse)

Expected a property here.

12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,12 @@
<br>
<br>
<img src="./src/assets/images/logo.png" height="140" />
<h1> Slash Admin </h1>
<h1> SkillRazr Admin App </h1>
<p style="font-size: 14px">
Slash Admin is a modern admin dashboard template built with React 18, Vite, Ant Design, and TypeScript. It is designed to help developers quickly create powerful admin management systems.
SkillRazr Admin is a modern admin dashboard template built with React 18, Vite, Ant Design, and TypeScript. It is designed to help developers quickly create powerful admin management systems.
</p>
</div>

**English** | [中文](./README.zh-CN.md)

## Sponsor
<div style="display: flex; gap: 50px">
<img style="width:300px" src="https://d3george.github.io/github-static/pay/weixin.jpg" >
<img style="width:300px" src="https://d3george.github.io/github-static/pay/buymeacoffee.png" />
</div>

## Preview
+ https://admin.slashspaces.com/

Expand Down
124 changes: 0 additions & 124 deletions README.zh-CN.md

This file was deleted.

12 changes: 12 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"hosting": {
"public": "dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Slash Admin</title>
<title>SkillRazr Admin</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Loading