create-zuplo-api 6.70.68 → 6.70.69
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.
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// Uncomment the import below to enable Zuplo monetization (pricing, checkout,
|
|
2
|
+
// subscriptions). See: https://zuplo.com/docs/articles/monetization
|
|
3
|
+
// import { zuploMonetizationPlugin } from "@zuplo/zudoku-plugin-monetization";
|
|
1
4
|
import type { ZudokuConfig } from "zudoku";
|
|
2
5
|
|
|
3
6
|
/**
|
|
@@ -88,6 +91,9 @@ const config: ZudokuConfig = {
|
|
|
88
91
|
apiKeys: {
|
|
89
92
|
enabled: true,
|
|
90
93
|
},
|
|
94
|
+
// Uncomment to enable monetization. Don't forget to also uncomment the
|
|
95
|
+
// `zuploMonetizationPlugin` import at the top of this file.
|
|
96
|
+
// plugins: [zuploMonetizationPlugin()],
|
|
91
97
|
};
|
|
92
98
|
|
|
93
99
|
export default config;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// Uncomment the import below to enable Zuplo monetization (pricing, checkout,
|
|
2
|
+
// subscriptions). See: https://zuplo.com/docs/articles/monetization
|
|
3
|
+
// import { zuploMonetizationPlugin } from "@zuplo/zudoku-plugin-monetization";
|
|
1
4
|
import type { ZudokuConfig } from "zudoku";
|
|
2
5
|
|
|
3
6
|
/**
|
|
@@ -88,6 +91,9 @@ const config: ZudokuConfig = {
|
|
|
88
91
|
apiKeys: {
|
|
89
92
|
enabled: true,
|
|
90
93
|
},
|
|
94
|
+
// Uncomment to enable monetization. Don't forget to also uncomment the
|
|
95
|
+
// `zuploMonetizationPlugin` import at the top of this file.
|
|
96
|
+
// plugins: [zuploMonetizationPlugin()],
|
|
91
97
|
};
|
|
92
98
|
|
|
93
99
|
export default config;
|