forked from alibaba/lowcode-plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.js
More file actions
22 lines (22 loc) · 637 Bytes
/
build.js
File metadata and controls
22 lines (22 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
plugins: [
[
'build-plugin-fusion',
{
themePackage: '@alifd/theme-lowcode-light',
},
],
[
'@alilc/build-plugin-alt',
{
type: 'plugin',
// 开启注入调试模式,see:https://www.yuque.com/lce/doc/ulvlkz
inject: true,
// 配置要打开的页面,在注入调试模式下,不配置此项的话不会打开浏览器
// 支持直接使用官方 demo 项目:https://lowcode-engine.cn/demo/index.html
// openUrl: 'https://lowcode-engine.cn/demo/index.html?debug',
},
],
'./build.plugin.js',
],
};