Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
InventivetalentDev committed Nov 23, 2023
1 parent f6b7b89 commit d9419e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: "."
path: "dist/"

deploy:
needs: build
Expand Down
2 changes: 1 addition & 1 deletion build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const sharedConfig = {
const context = await esbuild.context({
...sharedConfig,
platform: 'browser',
outfile: "bundle.js",
outfile: "dist/bundle.js",
plugins: [
polyfillNode({}),
],
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
</div>
<div id="inspector" class="overlay bottom-right"></div>

<script src="bundle.js"></script>
<script src="dist/bundle.js"></script>
</body>
</html>

0 comments on commit d9419e6

Please sign in to comment.