hosted on Netlify

This commit is contained in:
ak 2023-09-30 22:05:37 -07:00
parent b2d56b7dfd
commit 893c5c415f
3 changed files with 27 additions and 2 deletions

2
.gitignore vendored
View file

@ -23,3 +23,5 @@ dist-ssr
*.sw?
.env
# Local Netlify folder
.netlify

View file

@ -1,3 +1,5 @@
# vue-blog-frontend
Frontend for express-blog-api made with Vue and Tailwind CSS.
Hosted on [Netlify](https://singular-malabi-cf37ee.netlify.app/#/)

21
netlify.toml Normal file
View file

@ -0,0 +1,21 @@
# example netlify.toml
[build]
command = "npm run build"
functions = "netlify/functions"
publish = "dist"
## Uncomment to use this redirect for Single Page Applications like create-react-app.
## Not needed for static site generators.
#[[redirects]]
# from = "/*"
# to = "/index.html"
# status = 200
## (optional) Settings for Netlify Dev
## https://github.com/netlify/cli/blob/main/docs/netlify-dev.md#project-detection
#[dev]
# command = "yarn start" # Command to start your dev server
# port = 3000 # Port that the dev server will be listening on
# publish = "dist" # Folder with the static content for _redirect file
## more info on configuring this file: https://docs.netlify.com/configure-builds/file-based-configuration/