-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6bfddd6
commit 3950368
Showing
9 changed files
with
86 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env sh | ||
|
||
# abort on errors | ||
set -e | ||
|
||
# build | ||
npm run build | ||
|
||
# navigate into the build output directory | ||
cd dist | ||
|
||
# if you are deploying to a custom domain | ||
# echo 'www.example.com' > CNAME | ||
|
||
git init | ||
git add -A | ||
git commit -m 'deploy' | ||
|
||
# if you are deploying to https://<USERNAME>.github.io | ||
# git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git main | ||
|
||
# if you are deploying to https://<USERNAME>.github.io/<REPO> | ||
# git push -f git@github.com:<USERNAME>/<REPO>.git main:gh-pages | ||
|
||
cd - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" type="image/png" sizes="32x32" href="/favicon.png"><title>Frontend Mentor Challenge Solutions</title><link href="/css/app.c25601de.css" rel="preload" as="style"><link href="/js/app.365c1c08.js" rel="preload" as="script"><link href="/js/chunk-vendors.e4229be5.js" rel="preload" as="script"><link href="/css/app.c25601de.css" rel="stylesheet"></head><body><div id="app"></div><script src="/js/chunk-vendors.e4229be5.js"></script><script src="/js/app.365c1c08.js"></script></body></html> | ||
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" type="image/png" sizes="32x32" href="/frontend-mentor-challenge-solutions/favicon.png"><title>Frontend Mentor Challenge Solutions</title><link href="/frontend-mentor-challenge-solutions/css/app.c25601de.css" rel="preload" as="style"><link href="/frontend-mentor-challenge-solutions/js/app.50b13802.js" rel="preload" as="script"><link href="/frontend-mentor-challenge-solutions/js/chunk-vendors.e4229be5.js" rel="preload" as="script"><link href="/frontend-mentor-challenge-solutions/css/app.c25601de.css" rel="stylesheet"></head><body><div id="app"></div><script src="/frontend-mentor-challenge-solutions/js/chunk-vendors.e4229be5.js"></script><script src="/frontend-mentor-challenge-solutions/js/app.50b13802.js"></script></body></html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// vue.config.js file to be placed in the root of your repository | ||
|
||
module.exports = { | ||
publicPath: process.env.NODE_ENV === "production" ? "/frontend-mentor-challenge-solutions" : "/", | ||
}; |