@hellocoop/quickstart 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/next.mjs +2 -3
- package/package.json +1 -1
package/next.mjs
CHANGED
|
@@ -7,8 +7,8 @@ import fs from 'fs-extra'
|
|
|
7
7
|
import quickstart from './index.js';
|
|
8
8
|
import { randomBytes } from 'crypto'
|
|
9
9
|
|
|
10
|
-
const HELLO_CONFIG_FILE = 'hello.config.
|
|
11
|
-
const HELLO_COOP_FILE = 'pages/api/hellocoop.
|
|
10
|
+
const HELLO_CONFIG_FILE = 'hello.config.js'
|
|
11
|
+
const HELLO_COOP_FILE = 'pages/api/hellocoop.js'
|
|
12
12
|
const ENV_FILE = '.env.local'
|
|
13
13
|
|
|
14
14
|
import dotenv from 'dotenv'
|
|
@@ -36,7 +36,6 @@ config.client_id = '${client_id}'
|
|
|
36
36
|
}
|
|
37
37
|
const config =`// ${HELLO_CONFIG_FILE}
|
|
38
38
|
// see https://hello.dev/docs/sdks/nextjs/#configuration for details
|
|
39
|
-
import type { Config } from '@hellocoop/nextjs'
|
|
40
39
|
|
|
41
40
|
const config = {
|
|
42
41
|
client_id: '${client_id}',
|