Skip to content

Commit

Permalink
Fix: add .env instructions to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
avivash committed Aug 14, 2023
1 parent 5d21344 commit 7f4a949
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ Ready? Let's go.
```sh
npm install
```
4. Start the application in dev mode
4. Create `.env` file with `PUBLIC_WEB3_STORAGE_KEY="<YOUR_WEB3STORAGE_KEY>"`
5. Start the application in dev mode
```js
npm run dev
```
Expand Down
5 changes: 4 additions & 1 deletion vite.widget.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ export default defineConfig({
output: {
format: 'iife',
dir: resolve(__dirname, './widget'),
entryFileNames: 'fund-ring-widget.js',
entryFileNames: 'fund-ring-widget.js'
}
}
},
optimizeDeps: {
exclude: ['uint8arrays', 'clipboard-copy', 'web3.storage']
},
plugins: [
svelte({
preprocess: sveltePreprocess({}),
Expand Down

0 comments on commit 7f4a949

Please sign in to comment.