Skip to content

Commit 9af3fbd

Browse files
committed
fix: remove uri encoding from manifest
1 parent 55e706b commit 9af3fbd

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

demo/index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
<!DOCTYPE html>
22
<html lang="en">
3+
34
<head>
45
<meta charset="UTF-8">
56
<meta http-equiv="X-UA-Compatible" content="IE=edge">
67
<meta name="viewport" content="width=device-width, initial-scale=1.0">
78
<title>Document</title>
89
</head>
10+
911
<body>
10-
Hi
12+
<h1>Hi</h1>
13+
<img src="images/frogmouth.png" alt="Baby tawny frogmouth looking surly" />
1114
</body>
12-
</html>
15+
16+
</html>

demo/public/images/frogmouth.png

436 KB
Loading

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const netlifyEdge = ({
6262
.sync('**/*', {
6363
cwd: path.resolve(resolvedConfig.root, originalPublicDir),
6464
})
65-
.map((file) => `${resolvedConfig.base}${encodeURIComponent(file)}`)
65+
.map((file) => `${resolvedConfig.base}${file}`)
6666

6767
return `export default new Set(${JSON.stringify([
6868
...files,

0 commit comments

Comments
 (0)