config: nextjs,frontends,package (3 files)

This commit is contained in:
Richard Ward
2025-12-30 20:46:56 +00:00
parent 34c00c1520
commit 3b97d281c3
3 changed files with 2804 additions and 179 deletions

View File

@@ -90,11 +90,16 @@ const nextConfig: NextConfig = {
'@/core/foundation/errors': path.resolve(__dirname, '../../dbal/development/src/core/foundation/errors.ts'),
}
// Ignore optional AWS SDK on client side
// Ignore optional AWS SDK and Node.js modules on client side
if (!isServer) {
config.resolve.fallback = {
...config.resolve.fallback,
'@aws-sdk/client-s3': false,
fs: false,
path: false,
crypto: false,
stream: false,
os: false,
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -104,6 +104,11 @@
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/react": "^8.6.15",
"@storybook/react-vite": "^8.6.15",
"@storybook/test": "^8.6.14",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
@@ -122,6 +127,7 @@
"prettier": "^3.4.2",
"prisma": "^7.2.0",
"sass": "^1.97.1",
"storybook": "^8.6.15",
"typescript": "~5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.0",