1 Star 0 Fork 0

xxnnn/chatgpt-web-midjourney-proxy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 2.54 KB
一键复制 编辑 原始数据 按行查看 历史
xnxnxnxn 提交于 2024-06-21 14:29 . first commit
import path from 'path'
import type { PluginOption } from 'vite'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import { VitePWA } from 'vite-plugin-pwa'
import { viteStaticCopy } from 'vite-plugin-static-copy'
function setupPlugins(env: ImportMetaEnv): PluginOption[] {
return [
vue(),
viteStaticCopy({
targets: [
{
src: path.resolve(__dirname, './src/static/mitf') + '/[!.]*', // 1️⃣
dest: './mitf/', // 2️⃣
},
],
}),
VitePWA({ // env.VITE_GLOB_APP_PWA === 'true' &&
injectRegister: 'auto',
manifest: {
name: 'chatGPT-MJ',
short_name: 'chatGPT-MJ',
icons: [
{ src: 'pwa-192x192.png', sizes: '192x192', type: 'image/png' },
{ src: 'pwa-512x512.png', sizes: '512x512', type: 'image/png' },
],
},
}),
]
}
export default defineConfig((env) => {
const viteEnv = loadEnv(env.mode, process.cwd()) as unknown as ImportMetaEnv
return {
base: '/midjourney/',
resolve: {
alias: {
'@': path.resolve(process.cwd(), 'src'),
},
},
plugins: setupPlugins(viteEnv),
server: {
host: '0.0.0.0',
port: 1002,
open: false,
// proxy: {
// '/api': {
// target: viteEnv.VITE_APP_API_BASE_URL,
// changeOrigin: true, // 允许跨域
// rewrite: path => path.replace('/api/', '/'),
// },
// '/mjapi': {
// target: viteEnv.VITE_APP_API_BASE_URL,
// changeOrigin: true, // 允许跨域
// // rewrite: path => path.replace('/mjapi/', '/'),
// },
// '/sunoapi': {
// target: viteEnv.VITE_APP_API_BASE_URL,
// changeOrigin: true, // 允许跨域
// },
// '/uploads': {
// target: viteEnv.VITE_APP_API_BASE_URL,
// changeOrigin: true, // 允许跨域
// //rewrite: path => path.replace('/api/', '/'),
// },
// '/openapi': {
// target: viteEnv.VITE_APP_API_BASE_URL + '/api',
// changeOrigin: true, // 允许跨域
// // rewrite: path => path.replace('/openapi/', '/'),
// },
// '/luma': {
// target: viteEnv.VITE_APP_API_BASE_URL,
// changeOrigin: true, // 允许跨域
// //rewrite: path => path.replace('/api/', '/'),
// },
// },
},
build: {
reportCompressedSize: false,
sourcemap: false,
commonjsOptions: {
ignoreTryCatch: false,
},
},
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xxnnn/chatgpt-web-midjourney-proxy.git
[email protected]:xxnnn/chatgpt-web-midjourney-proxy.git
xxnnn
chatgpt-web-midjourney-proxy
chatgpt-web-midjourney-proxy
master

搜索帮助