
* bootstrap segment app from cms app * tracking logic * schema configuratioj * config form * form saving * Connected order_created * add more fields * Order updated webhook * Order cancelled event * order refunded webhook * order fully paid * update deps * error handling * logger * logs * Add app to workflow * add icon * remove breadcrumbs * Change 400 to 200 response if payload is invalid * link to docs * change semgent.io to segment
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
const { z } = require("zod");
|
|
const { withSentryConfig } = require("@sentry/nextjs");
|
|
|
|
const RequiredEnvs = z.object({
|
|
APL: z.string().min(1),
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = () => {
|
|
try {
|
|
RequiredEnvs.parse(process.env);
|
|
} catch (e) {
|
|
console.error("🚫 Missing required env variables, see message below");
|
|
console.error(e.issues);
|
|
process.exit(1);
|
|
}
|
|
|
|
return {
|
|
reactStrictMode: true,
|
|
transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
|
|
};
|
|
};
|
|
|
|
const isSentryPropertiesInEnvironment =
|
|
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
|
|
|
|
const configWithSentry = withSentryConfig(
|
|
nextConfig,
|
|
{
|
|
silent: true,
|
|
org: process.env.SENTRY_ORG,
|
|
project: process.env.SENTRY_PROJECT,
|
|
},
|
|
{
|
|
widenClientFileUpload: true,
|
|
transpileClientSDK: true,
|
|
tunnelRoute: "/monitoring",
|
|
hideSourceMaps: true,
|
|
disableLogger: true,
|
|
}
|
|
);
|
|
|
|
module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;
|