create-plasmic-app 0.0.91 → 0.0.92
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/cpa-out/nextjs-pages-loader-ts/pages/[[...catchall]].tsx +1 -1
- package/package.json +2 -2
- package/cpa-out/nextjs-app-loader-js/next.config.js +0 -13
- package/cpa-out/nextjs-app-loader-ts/next.config.js +0 -13
- package/cpa-out/nextjs-pages-codegen-js/next.config.js +0 -10
- package/cpa-out/nextjs-pages-codegen-ts/next.config.js +0 -10
- package/cpa-out/nextjs-pages-loader-js/next.config.js +0 -10
- package/cpa-out/nextjs-pages-loader-ts/next.config.js +0 -10
|
@@ -13,7 +13,7 @@ import { PLASMIC } from "@/plasmic-init";
|
|
|
13
13
|
|
|
14
14
|
export default function PlasmicLoaderPage(props: {
|
|
15
15
|
plasmicData?: ComponentRenderData;
|
|
16
|
-
queryCache?: Record<string,
|
|
16
|
+
queryCache?: Record<string, unknown>;
|
|
17
17
|
}) {
|
|
18
18
|
const { plasmicData, queryCache } = props;
|
|
19
19
|
const router = useRouter();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-plasmic-app",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.92",
|
|
4
4
|
"description": "Create Plasmic-powered React apps",
|
|
5
5
|
"main": "./dist/lib.js",
|
|
6
6
|
"types": "./dist/lib.d.ts",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"validate-npm-package-name": "^3.0.0",
|
|
55
55
|
"yargs": "^16.2.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "86eaf79b9b2daff453449425b7c2fc91ec43190f"
|
|
58
58
|
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/** @type {import('next').NextConfig} */
|
|
3
|
-
const nextConfig = {
|
|
4
|
-
// Turn off React StrictMode for now, as react-aria (used by Plasmic)
|
|
5
|
-
// has some troubles with it. See
|
|
6
|
-
// https://github.com/adobe/react-spectrum/labels/strict%20mode
|
|
7
|
-
reactStrictMode: false,
|
|
8
|
-
experimental: {
|
|
9
|
-
appDir: true,
|
|
10
|
-
}
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
module.exports = nextConfig;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/** @type {import('next').NextConfig} */
|
|
3
|
-
const nextConfig = {
|
|
4
|
-
// Turn off React StrictMode for now, as react-aria (used by Plasmic)
|
|
5
|
-
// has some troubles with it. See
|
|
6
|
-
// https://github.com/adobe/react-spectrum/labels/strict%20mode
|
|
7
|
-
reactStrictMode: false,
|
|
8
|
-
experimental: {
|
|
9
|
-
appDir: true,
|
|
10
|
-
}
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
module.exports = nextConfig;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/** @type {import('next').NextConfig} */
|
|
3
|
-
const nextConfig = {
|
|
4
|
-
// Turn off React StrictMode for now, as react-aria (used by Plasmic)
|
|
5
|
-
// has some troubles with it. See
|
|
6
|
-
// https://github.com/adobe/react-spectrum/labels/strict%20mode
|
|
7
|
-
reactStrictMode: false,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
module.exports = nextConfig;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/** @type {import('next').NextConfig} */
|
|
3
|
-
const nextConfig = {
|
|
4
|
-
// Turn off React StrictMode for now, as react-aria (used by Plasmic)
|
|
5
|
-
// has some troubles with it. See
|
|
6
|
-
// https://github.com/adobe/react-spectrum/labels/strict%20mode
|
|
7
|
-
reactStrictMode: false,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
module.exports = nextConfig;
|