2025-05-15 11:51:13 +00:00
|
|
|
// 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
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
],
|
2025-05-28 10:03:31 +00:00
|
|
|
build: {
|
|
|
|
rollupOptions: {
|
|
|
|
external: ['@wangeditor/editor-for-vue']
|
|
|
|
}
|
|
|
|
}
|
2025-05-15 11:51:13 +00:00
|
|
|
// optimizeDeps: {
|
|
|
|
// include: [
|
|
|
|
// "@surely-vue/table" // 显式包含依赖进行预构建
|
|
|
|
// ]
|
|
|
|
// }
|
|
|
|
});
|