39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
|
// import {defineConfig} from 'vite'
|
||
|
// import vue from '@vitejs/plugin-vue'
|
||
|
// import Components from 'unplugin-vue-components/vite';
|
||
|
// import {AntDesignVueResolver} from "unplugin-vue-components/resolvers";
|
||
|
//
|
||
|
//
|
||
|
// export default defineConfig({
|
||
|
// plugins: [vue(),
|
||
|
// Components({
|
||
|
// resolvers: [
|
||
|
// AntDesignVueResolver({
|
||
|
// importStyle: false, // css in js
|
||
|
// }),
|
||
|
// ],
|
||
|
// }),],
|
||
|
// })
|
||
|
import { defineConfig } from 'vite';
|
||
|
import vue from '@vitejs/plugin-vue';
|
||
|
import Components from 'unplugin-vue-components/vite';
|
||
|
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers';
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
Components({
|
||
|
resolvers: [
|
||
|
AntDesignVueResolver({
|
||
|
importStyle: false, // css in js
|
||
|
}),
|
||
|
],
|
||
|
}),
|
||
|
],
|
||
|
// optimizeDeps: {
|
||
|
// include: [
|
||
|
// "@surely-vue/table" // 显式包含依赖进行预构建
|
||
|
// ]
|
||
|
// }
|
||
|
});
|