We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefac31 commit 0a4b952Copy full SHA for 0a4b952
.changeset/wet-pugs-chew.md
@@ -0,0 +1,5 @@
1
+---
2
+"open-next": patch
3
4
+
5
+Store public file posix path on Windows
packages/open-next/src/build.ts
@@ -134,7 +134,7 @@ function listPublicFiles() {
134
for (const file of files) {
135
file.isDirectory()
136
? processDirectory(path.join(pathInPublic, file.name))
137
- : result.files.push(path.join(pathInPublic, file.name));
+ : result.files.push(path.posix.join(pathInPublic, file.name));
138
}
139
140
0 commit comments