We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7776985 commit e7b44a3Copy full SHA for e7b44a3
.github/workflows/gh_pages_deploy.yml
@@ -0,0 +1,15 @@
1
+name: Build Vue
2
+on: [push]
3
+jobs:
4
+ build_vue:
5
+ runs-on: ubuntu-latest
6
+ name: Build Vue
7
+ steps:
8
+ - uses: actions/checkout@v2
9
+ - id: Build-Vue
10
+ uses: xRealNeon/VuePagesAction@1.0.1
11
+ with:
12
+ username: "hackgrrrl"
13
+ reponame: "webpage-2021"
14
+ cname: "www.hackgrrrl.com"
15
+ token: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged
vue.config.js
@@ -1,6 +1,4 @@
module.exports = {
- publicPath: '/',
- transpileDependencies: [
- 'vuetify'
- ]
-}
+ publicPath: "/webpage-2021/",
+ transpileDependencies: ["vuetify"],
+};
0 commit comments