ba5e2b5e6c
* Checkpoint, basics are working * Add the `--experimental-ssr` flag * Adds the changeset * Fixes population of getStaticPaths results * Pass through the imported module * Route manifest test * Fix remaining tests * Fix remaining tests * Copy server assets over * Fix types * Allowing passing in the request to the Node version of App * Improve the example app * Gets CI to pass
28 lines
500 B
JSON
28 lines
500 B
JSON
{
|
|
"products": [
|
|
{
|
|
"id": 1,
|
|
"name": "Cereal",
|
|
"price": 3.99,
|
|
"image": "/images/products/cereal.jpg"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name": "Yogurt",
|
|
"price": 3.97,
|
|
"image": "/images/products/yogurt.jpg"
|
|
},
|
|
{
|
|
"id": 3,
|
|
"name": "Rolled Oats",
|
|
"price": 2.89,
|
|
"image": "/images/products/oats.jpg"
|
|
},
|
|
{
|
|
"id": 4,
|
|
"name": "Muffins",
|
|
"price": 4.39,
|
|
"image": "/images/products/muffins.jpg"
|
|
}
|
|
]
|
|
}
|