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
commit 3236b2ecc3
No known key found for this signature in database
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))