Initial commit: Saleor Core Extensions app with order email notifications

This commit is contained in:
Unchained
2026-03-26 11:27:25 +02:00
parent 70ddc8a4dc
commit bd8d941b1c
15 changed files with 16764 additions and 10028 deletions
+8 -3
View File
@@ -3,10 +3,15 @@ import { NextConfig } from "next";
const config: NextConfig = {
reactStrictMode: true,
typescript: {
// Allow build to succeed even with type errors
ignoreBuildErrors: true,
},
eslint: {
// Allow build to succeed even with lint errors
ignoreDuringBuilds: true,
},
webpack: (config) => {
// When using `pnpm link` for local SDK development, webpack may resolve
// react/react-dom from the linked package's node_modules (different version),
// causing the "two Reacts" problem. Force resolution to this project's copy.
config.resolve = {
...config.resolve,
alias: {