aa4befa0ff
- 下载资源管理与 /download/{slug} 下载链接
- 下载统计(次数/去重人数/明细/CSV 导出)
- 按资源邮箱验证(Halo 通知中心发信,互认评论插件已验证邮箱)
- 本地附件防直链(/upload/** 404)
- 文章引用扫描
- Console 前端:Vue3 + ui-plugin-bundler-kit
29 lines
707 B
JavaScript
29 lines
707 B
JavaScript
import { rsbuildConfig } from '@halo-dev/ui-plugin-bundler-kit';
|
|
import { pluginVue } from '@rsbuild/plugin-vue';
|
|
|
|
const MANIFEST_PATH = '../src/main/resources/plugin.yaml';
|
|
const OUT_DIR_PROD = '../src/main/resources/console';
|
|
const OUT_DIR_DEV = '../build/resources/main/console';
|
|
|
|
export default rsbuildConfig({
|
|
manifestPath: MANIFEST_PATH,
|
|
rsbuild: ({ envMode }) => {
|
|
const isProduction = envMode === 'production';
|
|
const outDir = isProduction ? OUT_DIR_PROD : OUT_DIR_DEV;
|
|
|
|
return {
|
|
resolve: {
|
|
alias: {
|
|
'@': './src',
|
|
},
|
|
},
|
|
plugins: [pluginVue()],
|
|
output: {
|
|
distPath: {
|
|
root: outDir,
|
|
},
|
|
},
|
|
};
|
|
},
|
|
});
|