新增招标文件

This commit is contained in:
2023-07-13 17:14:45 +08:00
commit ecfd47cda7
81 changed files with 5061 additions and 0 deletions

15
vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
base: process.env.NODE_ENV === 'production' ? '/h5/' : '/',//放服务器二级目录
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})