diff --git a/.gitignore b/.gitignore
index 24cc25242b..91dffceb5c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,6 +56,7 @@ apps/dgiot_parse/etc/dgiot_parse.conf
apps/dgiot_jieshun/
apps/dgiot_mingcheng/
apps/dgiot_xinchuangwei/
+apps/dgiot_esports/
apps/dgiot_http/etc/dgiot_http.conf
node_modules/
package-lock.json
diff --git a/apps/dgiot_esports b/apps/dgiot_esports
deleted file mode 160000
index 7651b71d88..0000000000
--- a/apps/dgiot_esports
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 7651b71d8895f6aa021c7165f126fc0e62177434
diff --git a/data/loaded_plugins.tmpl b/data/loaded_plugins.tmpl
index bf58f4fb25..1dfee7cab4 100644
--- a/data/loaded_plugins.tmpl
+++ b/data/loaded_plugins.tmpl
@@ -26,3 +26,4 @@
{dgiot_group, {{enable_plugin_dgiot_group}}}.
{dgiot_shouyincheng, {{enable_plugin_dgiot_shouyincheng}}}.
{dgiot_gb26875, {{enable_plugin_dgiot_gb26875}}}.
+{dgiot_esports, {{enable_plugin_dgiot_esports}}}.
diff --git a/dgiot.ipr b/dgiot.ipr
index 45aa7fe141..9e4678f06f 100644
--- a/dgiot.ipr
+++ b/dgiot.ipr
@@ -115,6 +115,7 @@
+
diff --git a/rebar.config.erl b/rebar.config.erl
index ff2e1502da..620d6c074d 100644
--- a/rebar.config.erl
+++ b/rebar.config.erl
@@ -221,6 +221,7 @@ overlay_vars_rel(RelType) ->
, {enable_plugin_dgiot_ffmpeg, true}
, {enable_plugin_dgiot_shouyincheng, true}
, {enable_plugin_dgiot_gb26875, true}
+ , {enable_plugin_dgiot_esports, true}
, {vm_args_file, VmArgs}
].
@@ -352,6 +353,7 @@ relx_plugin_apps_per_rel(cloud) ->
, dgiot_ffmpeg
, dgiot_shouyincheng
, dgiot_gb26875
+ , dgiot_esports
];
relx_plugin_apps_per_rel(edge) ->
[].