Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
tabulator-another-web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
tabulator-another-web
Commits
4b61802e
Commit
4b61802e
authored
May 22, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
env divert
parent
d15edc7e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
.env.development
.env.development
+2
-0
.env.production
.env.production
+2
-0
package.json
package.json
+3
-3
src/script/post.ts
src/script/post.ts
+3
-3
No files found.
.env.development
0 → 100644
View file @
4b61802e
VITE_USER_API=https://sapi.moecube.com:444/accounts
VITE_TABULATOR_API=https://api-tabulator-dev.moecube.com
.env.production
0 → 100644
View file @
4b61802e
VITE_USER_API=https://sapi.moecube.com:444/accounts
VITE_TABULATOR_API=https://api-tabulator.moecube.com
package.json
View file @
4b61802e
...
...
@@ -3,8 +3,8 @@
"version"
:
"0.0.0"
,
"scripts"
:
{
"dev:custom"
:
"uni -p"
,
"dev:h5"
:
"uni"
,
"dev:h5:ssr"
:
"uni --ssr"
,
"dev:h5"
:
"uni
--mode development
"
,
"dev:h5:ssr"
:
"uni --ssr
--mode development
"
,
"dev:mp-alipay"
:
"uni -p mp-alipay"
,
"dev:mp-baidu"
:
"uni -p mp-baidu"
,
"dev:mp-jd"
:
"uni -p mp-jd"
,
...
...
@@ -18,7 +18,7 @@
"dev:quickapp-webview-huawei"
:
"uni -p quickapp-webview-huawei"
,
"dev:quickapp-webview-union"
:
"uni -p quickapp-webview-union"
,
"build:custom"
:
"uni build -p"
,
"build:h5"
:
"uni build"
,
"build:h5"
:
"uni build
--mode production
"
,
"build:h5:ssr"
:
"uni build --ssr"
,
"build:mp-alipay"
:
"uni build -p mp-alipay"
,
"build:mp-baidu"
:
"uni build -p mp-baidu"
,
...
...
src/script/post.ts
View file @
4b61802e
...
...
@@ -638,8 +638,8 @@ class Users {
}
}
const
User
=
new
Users
(
'
https://sapi.moecube.com:444/accounts
'
)
const
Tabulator
=
new
TabulatorAPI
(
'
https://api-tabulator-dev.moecube.com
'
);
const
User
=
new
Users
(
import
.
meta
.
env
.
VITE_USER_API
);
const
Tabulator
=
new
TabulatorAPI
(
import
.
meta
.
env
.
VITE_TABULATOR_API
);
export
{
Tabulator
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment