-
Notifications
You must be signed in to change notification settings - Fork 0
/
plasmic-init.ts
25 lines (21 loc) · 1 KB
/
plasmic-init.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { initPlasmicLoader } from "@plasmicapp/loader-nextjs";
export const PLASMIC = initPlasmicLoader({
projects: [
{
id: "woeZZ6ayjyvsD5sWWCQB8W",
token: "NlmhoAFh7DWZaLIGaTSgG9dGlhvw05K4mHS2b8KwVEq5hwgrrw1qYJfh6nIsH7Z6A5rbCt1FCH8sF51aqylfw",
},
],
// By default Plasmic will use the last published version of your project.
// For development, you can set preview to true, which will use the unpublished
// project, allowing you to see your designs without publishing. Please
// only use this for development, as this is significantly slower.
preview: true,
});
// You can register any code components that you want to use here; see
// https://docs.plasmic.app/learn/code-components-ref/
// And configure your Plasmic project to use the host url pointing at
// the /plasmic-host page of your nextjs app (for example,
// http://localhost:3000/plasmic-host). See
// https://docs.plasmic.app/learn/app-hosting/#set-a-plasmic-project-to-use-your-app-host
// PLASMIC.registerComponent(...);