diff --git a/scripts/pathResolver.js b/scripts/pathResolver.js index ebf36c538..71cddda85 100644 --- a/scripts/pathResolver.js +++ b/scripts/pathResolver.js @@ -10,6 +10,7 @@ function updatePaths(path) { file = file.replace(/\@Server/gm, `${relativePath}main/server`); file = file.replace(/\@Client/gm, `${relativePath}main/client`); file = file.replace(/\@Shared/gm, `${relativePath}main/shared`); + file = file.replace(/\@Plugins/gm, `${relativePath}plugins`); fs.writeFileSync(path, file); }