-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config-mysql.js
110 lines (96 loc) · 2.26 KB
/
vite.config-mysql.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// const express = require("express");
// const app = express();
// const mysql = require("mysql");
// const db = mysql.createConnection({
// host:"mysql.sqlpub.com",
// port:"3306",
// user:"jeckdata",
// password:"f5c194f2d8ef6320",
// database:'jeckdata'
// })
// db.connect( (err,data) => {
// if(err) throw err;
// console.log(data,'连接成功');
// })
// 查看所有表
// db.query('SHOW TABLES', (err, result) => {
// if (err) throw err;
// console.log('Tables in the database:', result);
// });
// 查询内容
// app.get("/user/list",(req,res) => {
// let sql = "SELECT * FROM user";
// db.query(sql,(err,result) => {
// if(err){
// console.log(err);
// }else{
// res.json(result)
// }
// })
// })
// 插入数据
// app.get("/user/add",(req,res) => {
// let post = req.query;
// let sql = "INSERT INTO user SET ?";
// db.query(sql,post,(err,result) => {
// if(err){
// console.log(err);
// }else{
// res.send(result)
// }
// })
// })
// app.listen(3000, () => {
// console.log("服务器开启在3000端口....");
// }
// )
// https://vitejs.dev/config/
export default defineConfig({
base:'./',
server: {
open: true,
proxy: {
'/api/bing': {
target: 'https://api.oioweb.cn',
changeOrigin: true
},
'/api/ai': {
target: 'https://api.oioweb.cn',
changeOrigin: true
},
'/user': {
target: 'http://127.0.0.1:3000/',
changeOrigin: true
},
'/api/douban': {
target: 'https://api.vvhan.com',
changeOrigin: true
},
'/api/weather': {
target: 'https://api.vvhan.com',
changeOrigin: true
},
'/api/getIpInfo': {
target: 'https://api.vvhan.com',
changeOrigin: true
},
'/api/horoscope': {
target: 'https://api.vvhan.com',
changeOrigin: true
},
'/api/hotlist': {
target: 'https://api.vvhan.com',
changeOrigin: true,
// pathRewrite: {
// '/api/hotlist': '/api'
// }
},
}
},
preview: {
port: 5000
},
plugins: [vue()]
})