radar fix for static deployment, slight spelling and grammer fixes in readme

This commit is contained in:
Mitchell Scott
2025-06-13 09:04:39 -06:00
parent 2827913d42
commit 3236b2ecc3
4 changed files with 16 additions and 16 deletions

View File

@@ -97,12 +97,12 @@ const buildJs = () => src(mjsSources)
.pipe(dest(RESOURCES_PATH));
const workerSources = [
'server/scripts/modules/radar-worker.mjs',
'server/scripts/modules/radar-worker.mjs',
];
const buildWorkers = () => {
// update the file name in the webpack options
const output = { filename: 'radar-worker.mjs' };
const output = { filename: 'radar-worker.js' };
const workerWebpackOptions = { ...webpackOptions, output };
return src(workerSources)
.pipe(webpack(workerWebpackOptions))