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 39c24a7 commit 2ad40daCopy full SHA for 2ad40da
packages/create-app/template/netlify.toml
@@ -0,0 +1,11 @@
1
+[build.environment]
2
+ NODE_VERSION = "14"
3
+
4
+[build]
5
+ publish = "dist"
6
+ command = "npm run build"
7
8
+[[redirects]]
9
+ from = "/*"
10
+ to = "/index.html"
11
+ status = 200
packages/create-app/template/vercel.json
@@ -0,0 +1,5 @@
+{
+ "rewrites": [
+ { "source": "/(.*)", "destination": "/index.html" }
+ ]
+}
0 commit comments