@jsonpages/cli 3.0.69 → 3.0.71
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/assets/src_tenant_alpha.sh +28 -1
- package/package.json +1 -1
|
@@ -595,7 +595,7 @@ cat << 'END_OF_FILE_CONTENT' > "package.json"
|
|
|
595
595
|
"@tiptap/extension-link": "^2.11.5",
|
|
596
596
|
"@tiptap/react": "^2.11.5",
|
|
597
597
|
"@tiptap/starter-kit": "^2.11.5",
|
|
598
|
-
"@jsonpages/core": "^1.0.
|
|
598
|
+
"@jsonpages/core": "^1.0.58",
|
|
599
599
|
"clsx": "^2.1.1",
|
|
600
600
|
"lucide-react": "^0.474.0",
|
|
601
601
|
"react": "^19.0.0",
|
|
@@ -7527,6 +7527,33 @@ declare module '*?inline' {
|
|
|
7527
7527
|
|
|
7528
7528
|
|
|
7529
7529
|
|
|
7530
|
+
END_OF_FILE_CONTENT
|
|
7531
|
+
echo "Creating vercel.json..."
|
|
7532
|
+
cat << 'END_OF_FILE_CONTENT' > "vercel.json"
|
|
7533
|
+
{
|
|
7534
|
+
"rewrites": [
|
|
7535
|
+
{
|
|
7536
|
+
"source": "/:pagePath*.json",
|
|
7537
|
+
"destination": "/pages/:pagePath*.json"
|
|
7538
|
+
},
|
|
7539
|
+
{
|
|
7540
|
+
"source": "/(.*)",
|
|
7541
|
+
"destination": "/index.html"
|
|
7542
|
+
}
|
|
7543
|
+
],
|
|
7544
|
+
"headers": [
|
|
7545
|
+
{
|
|
7546
|
+
"source": "/assets/(.*)",
|
|
7547
|
+
"headers": [
|
|
7548
|
+
{
|
|
7549
|
+
"key": "Cache-Control",
|
|
7550
|
+
"value": "public, max-age=31536000, immutable"
|
|
7551
|
+
}
|
|
7552
|
+
]
|
|
7553
|
+
}
|
|
7554
|
+
]
|
|
7555
|
+
}
|
|
7556
|
+
|
|
7530
7557
|
END_OF_FILE_CONTENT
|
|
7531
7558
|
echo "Creating vite.config.ts..."
|
|
7532
7559
|
cat << 'END_OF_FILE_CONTENT' > "vite.config.ts"
|