Skip to content

Commit ce4aec9

Browse files
committed
feat: improved replay
1 parent f0b5bd0 commit ce4aec9

File tree

8 files changed

+215
-205
lines changed

8 files changed

+215
-205
lines changed

.eslintrc.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ module.exports = {
1616
'prettier'
1717
],
1818
rules: {
19+
// we need this for isomorphic code unfortunately
20+
'@typescript-eslint/no-var-requires': 'off',
1921
'@typescript-eslint/ban-ts-comment': 'off',
2022
'@typescript-eslint/ban-types': 'off',
2123
'@typescript-eslint/explicit-function-return-type': 'off',

pnpm-lock.yaml

Lines changed: 9 additions & 136 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { FlytrapConfig, FlytrapPublicKey } from './types'
22
import { empty } from './util'
33

44
export const FLYTRAP_PACKAGE_NAME = 'useflytrap'
5+
export const FLYTRAP_API_BASE = 'https://www.useflytrap.com'
56

67
/**
78
* Define your Flytrap configuration. `projectId` and `publicApiKey` are required.

0 commit comments

Comments
 (0)