vite-plugin-antd-theme
vite 下的 antd-design-vue 主题生成插件,依赖 antd-theme-generator
demo
vite.config.ts
import viteAntdTheme, { ThemeEntry, AntdThemeOptions } from 'vite-plugin-antd-theme';
const themesEntry: Array<ThemeEntry> = [
{
entryPath: [
path.resolve(__dirname, './node_modules/ant-design-vue/lib/style/themes/dark.less'),
path.resolve(__dirname, './src/styles/dark.less')],
outputName: 'dark',
outputPath: './src/config'
},
{
entryPath: './src/styles/vars.less',
outputName: 'light',
outputPath: './src/config'
},
{
entryPath: './node_modules/ant-design-vue/lib/style/themes/compact.less',
outputName: 'compact',
outputPath: './src/config'
},
];
const options: AntdThemeOptions = {
themesEntry,
allVariables: true,
antdDir: path.join(__dirname, './node_modules/ant-design-vue'),
stylesDir: path.join(__dirname, './src'),
varFile: path.join(__dirname, './src/styles/vars.less'),
themeVariables: [],
outputFilePath: path.join(__dirname, './public/static/color.less')
customColorRegexArray: [/^fade\(.*\)$/]
};
export default ({ command }: ConfigEnv): UserConfigExport => {
return {
plugins: [
viteAntdTheme(options)
],
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true
}
}
}
};
};
index.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>vite-plugin-antd-theme</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<link rel="stylesheet/less" type="text/css" href="/static/color.less" />
<script src="/static/libs/less.min.js"></script>
</body>
</html>
App.tsx(App.vue?)
import { defineComponent } from 'vue';
import 'ant-design-vue/dist/antd.less';
import darkVars from '@/config/dark.json';
export default defineComponent({
mounted() {
window.ddd = () => {
window['less'].modifyVars(darkVars).then(console.log);
};
},
setup() {
return () => <span>嗯嗯</span>;
},
});
// 测试
window.ddd();
更新说明
2021-05-27 v1.1.0
从该版本开始默认支持导出 antd 三种主题配置文件到 src/config 目录下