Skip to content

Commit d3b77b3

Browse files
Merge pull request #12 from Hussein-Alayan/slo-24-business-dashboard
Slo 24 business dashboard
2 parents 96e4e6b + b3f58d4 commit d3b77b3

235 files changed

Lines changed: 24996 additions & 979 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
businessmanagementapp1/
22
.history
33
.env
4+
.github/copilot-instructions.md
5+
__pycache__/
6+
*.pyc

client/README.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

client/jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ module.exports = {
55
moduleNameMapper: {
66
// Support for @ alias
77
'^@/(.*)$': '<rootDir>/src/$1',
8+
// Mock CSS imports
9+
'\\.(css|less|scss|sass)$': 'identity-obj-proxy',
810
},
911
globals: {
1012
'ts-jest': {

client/next.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
4-
/* config options here */
4+
images: {
5+
domains: ["localhost"],
6+
},
57
};
68

79
export default nextConfig;

0 commit comments

Comments
 (0)