We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aa3455 commit 3bd80e0Copy full SHA for 3bd80e0
netlify.toml
@@ -1,3 +1,3 @@
1
[build]
2
publish = "dist"
3
- command = "astro build"
+ command = "npm run build"
src/pages/cv.astro
@@ -31,8 +31,7 @@ import { CV } from "../content/cv.js";
31
{
32
Object.entries(CV.skills).map(([k, v]) => (
33
<p>
34
- <b>{k}:</b>
35
- {v}
+ <b>{k}:</b> {v}
36
</p>
37
))
38
}
0 commit comments