compute-js-static-publish icon indicating copy to clipboard operation
compute-js-static-publish copied to clipboard

Fix to import statics.js on Windows

Open ryuapp opened this issue 8 months ago • 0 comments

Node.js cannot load packages by Windows-style path.

// ✖
import { getServer } from '..\\static-publisher/statics.js';
// 👍
import { getServer } from '../static-publisher/statics.js';

ryuapp avatar Apr 10 '25 12:04 ryuapp