diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..4797e4b --- /dev/null +++ b/.env.development @@ -0,0 +1,4 @@ +VITE_APP_NAME="Kamil Niemczycki CV" +VITE_CV_URL="http://localhost:5173" +VITE_API_URL="http://localhost" +VITE_SOURCE_CODE="https://github.com/kamilniemczycki/kamilcraft-cv" diff --git a/.env.example b/.env.example index 2fea494..fbe18e0 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,5 @@ VITE_APP_NAME="Kamil Niemczycki CV" VITE_CV_URL="http://localhost:5173" +VITE_PORT=5173 VITE_API_URL="http://localhost" VITE_SOURCE_CODE="https://github.com/kamilniemczycki" diff --git a/.env.deployment b/.env.production similarity index 100% rename from .env.deployment rename to .env.production diff --git a/index.html b/index.html index e00107b..ca12e81 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,14 @@ Kamil Niemczycki CV + + + + + + - +
diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..c2a49f4 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Allow: / diff --git a/src/App.vue b/src/App.vue index 019d790..f3be424 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,4 +1,11 @@