mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
492 B
24 lines
492 B
import { defineConfig } from 'vite'
|
|
import path from 'path';
|
|
import vue from '@vitejs/plugin-vue'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
|
|
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
host: '0.0.0.0'
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
Components({
|
|
resolvers: [NaiveUiResolver()]
|
|
})
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
})
|