nbb-component-ui 1.6.5 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/vite.config.js +2 -0
package/package.json
CHANGED
package/vite.config.js
CHANGED
|
@@ -3,10 +3,12 @@ import vue from '@vitejs/plugin-vue'
|
|
|
3
3
|
import { resolve } from 'path'
|
|
4
4
|
// 引入类型生成插件
|
|
5
5
|
import dts from 'vite-plugin-dts'
|
|
6
|
+
import UnoCSS from 'unocss/vite'
|
|
6
7
|
|
|
7
8
|
export default defineConfig({
|
|
8
9
|
plugins: [
|
|
9
10
|
vue(),
|
|
11
|
+
UnoCSS(),
|
|
10
12
|
dts({
|
|
11
13
|
// 类型文件输出目录
|
|
12
14
|
outDir: 'dist',
|