Skip to content

Commit ad37ed9

Browse files
authored
Merge pull request #16 from uiowa/develop
Develop
2 parents 4cd281f + 7558841 commit ad37ed9

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/gh-pages.yml

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
- name: Main branch preparations
7373
if: github.ref == format('refs/heads/{0}', env.MAIN_BRANCH)
7474
run: |
75+
yarn build --base=/vuejs-site-template/
7576
cp -a $GITHUB_WORKSPACE/dist/* $GITHUB_WORKSPACE/gh-pages
7677
7778
# If develop branch:
@@ -80,6 +81,7 @@ jobs:
8081
- name: Develop branch preparations
8182
if: github.ref == format('refs/heads/{0}', env.DEVELOP_BRANCH)
8283
run: |
84+
yarn build --base=/vuejs-site-template/latest/
8385
rm -rf $GITHUB_WORKSPACE/gh-pages/latest
8486
mv $GITHUB_WORKSPACE/dist $GITHUB_WORKSPACE/gh-pages/latest
8587

src/App.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414

1515
<banner
16-
image="/images/widescreen__2592_x_1458/pano.jpg"
16+
image="images/widescreen__2592_x_1458/pano.jpg"
1717
banner_size="large"
1818
banner_vertical_alignment="vertical-center"
1919
banner_horizontal_alignment="horizontal-center"
@@ -62,7 +62,7 @@
6262
</div>
6363
<grid-panel
6464
link_url= 'https://admissions.uiowa.edu/academics/academics'
65-
image= '/images/viewbook/sections/0315.jpg'
65+
image= 'images/viewbook/sections/0315.jpg'
6666
headline= 'We Work <span>Together</span>'
6767
button_text= 'View Academic Opportunities'
6868
button_link= ''

vite.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
const config = {
44
esbuildTarget: 'es2015',
5-
base: '',
65
// plugins: [
76
// babel({
87
// babelHelpers: 'bundled',

0 commit comments

Comments
 (0)