- {{ name }}
-
+ {{ name }}
+
\ No newline at end of file
diff --git a/src/service.ts b/src/service.ts
index 3449fd1..b709ef6 100644
--- a/src/service.ts
+++ b/src/service.ts
@@ -6,4 +6,12 @@ export const apiAxiosInstance = axios.create({
'accept': 'application/json',
"Content-Type": "application/json"
},
+})
+
+export const evepraisalAxiosInstance = axios.create({
+ baseURL: '/appraisal/',
+ headers: {
+ 'accept': 'application/json',
+ "Content-Type": "application/json"
+ },
})
\ No newline at end of file
diff --git a/vite.config.ts b/vite.config.ts
index 6f117be..faac166 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -20,6 +20,12 @@ export default defineConfig({
changeOrigin: true,
followRedirects: true,
rewrite: (path) => path.replace(/^\/api/, ''),
+ },
+ '/appraisal/': {
+ target: 'https://evepraisal.shendai.rip/',
+ changeOrigin: true,
+ followRedirects: true,
+ rewrite: (path) => path.replace(/^\/appraisal/, ''),
}
}
},