* feat: 添加并优化服务提供商独立测试功能 * feat: add small size to action buttons in ItemCard and ProviderPage for better UI consistency --------- Co-authored-by: Soulter <905617992@qq.com>
48 lines
931 B
TypeScript
48 lines
931 B
TypeScript
import { fileURLToPath, URL } from 'url';
|
|
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import vuetify from 'vite-plugin-vuetify';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue({
|
|
template: {
|
|
compilerOptions: {
|
|
isCustomElement: (tag) => ['v-list-recognize-title'].includes(tag)
|
|
}
|
|
}
|
|
}),
|
|
vuetify({
|
|
autoImport: true
|
|
})
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {}
|
|
}
|
|
},
|
|
build: {
|
|
chunkSizeWarningLimit: 1024 * 1024 // Set the limit to 1 MB
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['vuetify'],
|
|
entries: ['./src/**/*.vue']
|
|
},
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 3000,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://127.0.0.1:6185/',
|
|
changeOrigin: true,
|
|
}
|
|
}
|
|
}
|
|
});
|