Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yibao
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tanjuanjuan
yibao
Commits
8ad61311
Commit
8ad61311
authored
Feb 25, 2025
by
张红
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
第二次提交,修改
parent
cd672974
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
95 deletions
+0
-95
index.html
index.html
+0
-20
project.config.json
project.config.json
+0
-29
project.private.config.json
project.private.config.json
+0
-8
vite.config.ts
vite.config.ts
+0
-38
No files found.
index.html
deleted
100644 → 0
View file @
cd672974
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
/>
<script>
var
coverSupport
=
'CSS'
in
window
&&
typeof
CSS
.
supports
===
'function'
&&
(
CSS
.
supports
(
'top: env(a)'
)
||
CSS
.
supports
(
'top: constant(a)'
))
document
.
write
(
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0'
+
(
coverSupport
?
', viewport-fit=cover'
:
''
)
+
'" />'
)
</script>
<title></title>
<!--preload-links-->
<!--app-context-->
</head>
<body>
<div
id=
"app"
>
<!--app-html-->
</div>
<script
type=
"module"
src=
"/src/main.ts"
></script>
</body>
</html>
project.config.json
deleted
100644 → 0
View file @
cd672974
{
"appid"
:
"wx370becacaade3262"
,
"compileType"
:
"miniprogram"
,
"libVersion"
:
"3.6.0"
,
"packOptions"
:
{
"ignore"
:
[],
"include"
:
[]
},
"setting"
:
{
"coverView"
:
true
,
"es6"
:
true
,
"postcss"
:
true
,
"minified"
:
true
,
"enhance"
:
true
,
"showShadowRootInWxmlPanel"
:
true
,
"packNpmRelationList"
:
[],
"babelSetting"
:
{
"ignore"
:
[],
"disablePlugins"
:
[],
"outputPath"
:
""
}
},
"condition"
:
{},
"editorSetting"
:
{
"tabIndent"
:
"insertSpaces"
,
"tabSize"
:
2
}
}
\ No newline at end of file
project.private.config.json
deleted
100644 → 0
View file @
cd672974
{
"description"
:
"项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html"
,
"projectname"
:
"rexma-temp-vue3"
,
"setting"
:
{
"compileHotReLoad"
:
true
}
}
\ No newline at end of file
vite.config.ts
deleted
100644 → 0
View file @
cd672974
import
{
defineConfig
}
from
'vite'
;
import
uni
from
'@dcloudio/vite-plugin-uni'
;
import
AutoImport
from
'unplugin-auto-import/vite'
;
import
legacy
from
'@vitejs/plugin-legacy'
;
// https://vitejs.dev/config/
export
default
defineConfig
({
plugins
:
[
uni
(),
AutoImport
({
imports
:
[
'vue'
,
'uni-app'
,
{
'rexma-cli'
:
[
'xma'
],
},
],
dts
:
'src/declaration/auto-imports.d.ts'
,
}),
process
.
env
.
UNI_PLATFORM
===
'h5'
&&
legacy
({
targets
:
[
'defaults'
,
'not IE 11'
],
}),
].
filter
(
Boolean
),
server
:
{
open
:
true
,
// 代理配置
// proxy: {
// '/back/one-visit/one-visit/web/ybVisit/ybSgySm2': {
// target: 'https://onemoment.gywb.cn/',
// changeOrigin: true,
// },
// },
},
});
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