This commit is contained in:
2023-02-19 04:20:31 +08:00
parent 522e27080c
commit 584fb8ce1d
2 changed files with 11 additions and 13 deletions

View File

@@ -13,13 +13,13 @@ export default defineNuxtConfig({
} }
} }
}, },
nitro: { //nitro: {
devProxy: { // devProxy: {
'/api': { // '/api': {
target: 'http://106.15.192.42:3000/api' // target: 'http://106.15.192.42:3000/api'
} // }
}, // },
}, //},
//devServer: { //devServer: {
// host: '106.15.192.42', // host: '106.15.192.42',
// port: 3000, // port: 3000,

View File

@@ -4,14 +4,12 @@ export default defineEventHandler(async event => {
// 获取图片 // 获取图片
if (event.node.req.method === 'GET') { if (event.node.req.method === 'GET') {
// 判断当前执行目录是否存在 outputs 文件夹, 否则在上一级文件夹 // 判断当前执行目录是否存在 outputs 文件夹, 否则在上一级文件夹
let path = `outputs/outputs/txt2img-samples/samples/${event.context.params.id}` let path = `outputs/txt2img-samples/samples/${event.context.params.id}`
if (!fs.existsSync('outputs')) { if (!fs.existsSync('outputs')) {
path = `../outputs/outputs/txt2img-samples/samples/${event.context.params.id}` path = `../outputs/txt2img-samples/samples/${event.context.params.id}`
} }
// 读取图片文件 console.log('path:', path)
let image = fs.readFileSync(path) return fs.readFileSync(path)
// 返回图片
return image
} }
}) })