forked from trent_larson/crowd-funder-for-time-pwa
- Fix Vue template syntax in App.vue by using proper event handler format - Update Vite config to properly handle ESM imports and crypto modules - Add manual chunks for better code splitting - Improve environment variable handling in vite-env.d.ts - Fix TypeScript linting errors in App.vue
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
// see also ../constants/app.ts and
|
|
|
|
function didProviderName(netName: string) {
|
|
return 'did:ethr' + (netName === 'mainnet' ? '' : ':' + netName)
|
|
}
|
|
|
|
export const DEFAULT_DID_PROVIDER_NAME = didProviderName('mainnet')
|