Skip to content

Commit

Permalink
url
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanfaucett committed Sep 16, 2021
1 parent e4e0327 commit 4db2b28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Expand Up @@ -13,7 +13,7 @@
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.tauri.dev",
"identifier": "io.github.wordgames",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/state/p2p.ts
Expand Up @@ -7,7 +7,7 @@ import { get, writable } from 'svelte/store';
import ee3 from 'eventemitter3';
import { v4 } from 'uuid';

const APP_ID = 'p2pgame-example-com-',
const APP_ID = 'wordgames-github-io-',
PEED_ID_KEY = 'peer_id';

export const peer = writable<Peer | null>(null),
Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Expand Up @@ -17,7 +17,7 @@ const config = {
}),
// If you are not using a .nojekyll file, change your appDir to something not starting with an underscore.
// For example, instead of '_app', use 'app_', 'internal', etc.
appDir: 'p2pgame',
appDir: 'wordgames',
// hydrate the <div id="svelte"> element in src/app.html
target: '#app'
}
Expand Down

0 comments on commit 4db2b28

Please sign in to comment.