@henderea/static-site-builder 1.10.1 → 1.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/paths.js +1 -1
- package/config/webpack.config.prod.js +7 -0
- package/package.json +1 -1
package/config/paths.js
CHANGED
|
@@ -12,7 +12,7 @@ import url from 'url';
|
|
|
12
12
|
import { findMonorepo } from '../utils/workspaceUtils.js';
|
|
13
13
|
import { fileURLToPath } from 'url';
|
|
14
14
|
|
|
15
|
-
const dirname = fileURLToPath(import.meta.url);
|
|
15
|
+
const dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
16
16
|
|
|
17
17
|
// Make sure any symlinks in the project folder are resolved:
|
|
18
18
|
// https://github.com/facebookincubator/create-react-app/issues/637
|