initial crm web

This commit is contained in:
zchengo
2022-11-28 16:38:45 +08:00
parent af7cd0c44c
commit 2e0208bf9d
29 changed files with 21927 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
server: {
host: '127.0.0.1',
port: 8008
},
plugins: [vue()],
css: {
preprocessorOptions: {
less: {
modifyVars: {
'primary-color': '#476FFF',
'link-color': '#476FFF',
'border-radius-base': '5px'
},
javascriptEnabled: true
}
}
},
})