Compare commits
15 Commits
Author | SHA1 | Date |
---|---|---|
ph3itme7x | 2587ec8230 | 6 months ago |
ph3itme7x | 14abd1369d | 6 months ago |
ph3itme7x | 370f278087 | 6 months ago |
ph3itme7x | 34dd3f2dae | 6 months ago |
ph3itme7x | c7ab6a3e24 | 6 months ago |
ph3itme7x | a1d7db1a49 | 6 months ago |
ph3itme7x | 76f4149f36 | 6 months ago |
ph3itme7x | fa07c8f889 | 6 months ago |
ph3itme7x | 1895e5a857 | 6 months ago |
ph3itme7x | 0c8525b495 | 6 months ago |
ph3itme7x | 88686a5787 | 6 months ago |
ph3itme7x | 9b10400ac2 | 6 months ago |
ph3itme7x | b5f9f84e4e | 6 months ago |
ph3itme7x | a3b139ff1d | 6 months ago |
ph3itme7x | 3c8c8529f1 | 6 months ago |
@ -1,24 +0,0 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
Binary file not shown.
@ -1,13 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + Vue</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load Diff
@ -1,25 +0,0 @@
|
||||
{
|
||||
"name": "subway",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@amap/amap-jsapi-loader": "^1.0.1",
|
||||
"axios": "^1.6.8",
|
||||
"element-plus": "^2.7.3",
|
||||
"vue": "^3.4.21",
|
||||
"vue-amap": "^0.5.10",
|
||||
"vue-router": "^4.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.12.12",
|
||||
"@vitejs/plugin-vue": "^5.0.4",
|
||||
"less": "^4.2.0",
|
||||
"vite": "^5.2.0"
|
||||
}
|
||||
}
|
Binary file not shown.
@ -1,18 +0,0 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import {tr} from "element-plus/es/locale/index";
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
server : {
|
||||
proxy:{
|
||||
'/admin':{
|
||||
target: 'http://127.0.0.1:5000/admin',
|
||||
changeOrigin: true,
|
||||
rewrite:(path) => path.replace(/^\/admin/,''),
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in new issue