Initial commit: 西安云阶智元信息科技有限公司官网

This commit is contained in:
leisileken
2026-06-16 21:37:29 +08:00
commit 61d4063828
39 changed files with 4941 additions and 0 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
}
})