From f672c9d0c93fbf47b4873f688446099d64a7c585 Mon Sep 17 00:00:00 2001 From: ak Date: Thu, 10 Aug 2023 13:04:02 -0700 Subject: [PATCH] host @ https://loquacious-kheer-dfb956.netlify.app --- .gitignore | 3 +++ index.html | 3 +-- netlify.toml | 21 +++++++++++++++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 netlify.toml diff --git a/.gitignore b/.gitignore index a547bf3..c3bb0db 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ dist-ssr *.njsproj *.sln *.sw? + +# Local Netlify folder +.netlify diff --git a/index.html b/index.html index 0c589ec..5b42f89 100644 --- a/index.html +++ b/index.html @@ -2,9 +2,8 @@ - - Vite + React + CV
diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..8c5c752 --- /dev/null +++ b/netlify.toml @@ -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/