1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00
This commit is contained in:
Martin McKeaveney 2020-07-13 19:44:42 +01:00
parent ec323a69ea
commit cbc22306cd
3 changed files with 3 additions and 3 deletions

View file

@ -181,7 +181,7 @@ export default {
production ? "production" : "development"
),
"process.env.POSTHOG_TOKEN": JSON.stringify(process.env.POSTHOG_TOKEN),
"process.env.POSTHOG_URL": JSON.stringify(process.env.POSTHOG_URL)
"process.env.POSTHOG_URL": JSON.stringify(process.env.POSTHOG_URL),
}),
svelte({

View file

@ -11,7 +11,7 @@ export const initialise = async () => {
try {
if (process.env.NODE_ENV === "production") {
posthog.init(process.env.POSTHOG_TOKEN, {
api_host: process.env.POSTHOG_URL
api_host: process.env.POSTHOG_URL,
})
}
} catch (err) {

View file

@ -9,7 +9,7 @@
async function updateKey([key, value]) {
const response = await api.put(`/api/keys/${key}`, { value })
const res = await response.json()
if (key === "budibase") posthog.identify(value);
if (key === "budibase") posthog.identify(value)
keys = { ...keys, ...res }
}