Skip to content

Commit

Permalink
Attempt to fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRasho committed Nov 6, 2023
1 parent 68901e2 commit a7caed3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Install dependencies
run: nix-shell ./default.nix --run "yarn install"
- name: Build
run: yarn build
run: nix-shell ./default.nix --run "yarn build"
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script type="module" src="/src/main.js" crossorigin></script>
</body>
</html>
1 change: 1 addition & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import vue from '@vitejs/plugin-vue'

// https://vitejs.dev/config/
export default defineConfig({
base: '/wireWiz/',
plugins: [
vue(),
],
Expand Down

0 comments on commit a7caed3

Please sign in to comment.