Skip to content

Commit

Permalink
Merge pull request #155 from AudiusProject/theo-use-relative-paths
Browse files Browse the repository at this point in the history
Use relative paths for IPFS
  • Loading branch information
theoilie authored and michellebrier committed Oct 9, 2023
1 parent ab2f86c commit 6f4a643
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/protocol-dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#CC0FE0" />
<link rel="manifest" href="/manifest.json" />
<link rel="manifest" href="manifest.json" />

<script src="https://cdn.jsdelivr.net/npm/web3@legacy/dist/web3.min.js"></script>

Expand All @@ -26,7 +26,7 @@
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script type="module" src="src/index.tsx"></script>
</body>

</html>
1 change: 1 addition & 0 deletions packages/protocol-dashboard/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import wasm from 'vite-plugin-wasm'
import topLevelAwait from 'vite-plugin-top-level-await'

export default defineConfig({
base: './',
plugins: [
react(),
wasm(),
Expand Down

0 comments on commit 6f4a643

Please sign in to comment.