24 lines
509 B
JavaScript
24 lines
509 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
host: '127.0.0.1',
|
|
port: 8060
|
|
},
|
|
plugins: [vue()],
|
|
css: {
|
|
preprocessorOptions: {
|
|
less: {
|
|
modifyVars: {
|
|
'primary-color': '#476FFF',
|
|
'link-color': '#476FFF',
|
|
'border-radius-base': '5px'
|
|
},
|
|
javascriptEnabled: true
|
|
}
|
|
}
|
|
},
|
|
})
|