This commit is contained in:
Jan Prochazka
2021-04-15 17:56:35 +02:00
parent 1cc955f997
commit 9139ff0f44
3 changed files with 42 additions and 0 deletions

View File

@@ -48,6 +48,10 @@ function packagedPluginsDir() {
if (platformInfo.isDocker) {
return path.resolve(__dirname, 'plugins');
}
if (process.argv[2] == 'startNodeWeb') {
// node_modules
return path.resolve(__dirname, '../../..');
}
return path.resolve(__dirname, '../../plugins');
}