File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
- import { setTimeout } from 'node:timers/promises'
2
1
import { env } from 'node:process'
2
+ import { setTimeout } from 'node:timers/promises'
3
+
3
4
import react from '@vitejs/plugin-react'
4
5
import { defineConfig } from 'vite'
5
6
import tsconfigPaths from 'vite-tsconfig-paths'
@@ -27,10 +28,7 @@ export default defineConfig(async ({ command }) => {
27
28
}
28
29
} )
29
30
30
- const setupEnv = async (
31
- endpoint : string ,
32
- isBuild : boolean ,
33
- ) : Promise < void > => {
31
+ const setupEnv = async ( endpoint : string , isBuild : boolean ) : Promise < void > => {
34
32
env [ 'SEAM_ENDPOINT' ] ??= endpoint
35
33
36
34
if ( env [ 'SEAM_PUBLISHABLE_KEY' ] == null ) {
@@ -40,7 +38,7 @@ const setupEnv = async (
40
38
`> Using the default publishable key.
41
39
> Use your own by setting SEAM_PUBLISHABLE_KEY in your environment.
42
40
> Get one for free at https://console.seam.co/
43
- `
41
+ ` ,
44
42
)
45
43
await setTimeout ( 2000 )
46
44
}
You can’t perform that action at this time.
0 commit comments