Files
album-view/vite.config.js
2025-12-12 11:34:31 +08:00

35 lines
919 B
JavaScript

import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwindcss from "@tailwindcss/vite"
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
tailwindcss()
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
server: {
port: 8888,
proxy: {
'/api': {
// target: 'http://127.0.0.1:18007/api/',
// target: 'http://127.0.0.1:18001/api/',
target: 'http://i.nailaoyun.cn/api/',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
},
'/t-oss': {
target: 'http://i.nailaoyun.cn/',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/t-oss/, '')
}
}
}
})