backup: Game端完整源码备份
Vue.js 3.x + Vant 移动端游戏界面 包含: 源码/配置/public资源 不含: node_modules/dist(可通过npm install+npm run build重建)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
const { defineConfig } = require("@vue/cli-service")
|
||||
module.exports = defineConfig({
|
||||
publicPath: "./",
|
||||
transpileDependencies: false,
|
||||
productionSourceMap: false,
|
||||
devServer: {
|
||||
proxy: {
|
||||
//配置多个跨域
|
||||
"/v8api": {
|
||||
target: "https://static.v8api.net",
|
||||
changeOrigin: true,
|
||||
secure: false,
|
||||
pathRewrite: {
|
||||
"^/v8api": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user