Skip to content

Commit f3a926d

Browse files
Merge pull request #136 from ISISComputingGroup/tidyup
remove unused deps, tidy up a bit
2 parents 52069c6 + 7ea2413 commit f3a926d

File tree

4 files changed

+62
-62
lines changed

4 files changed

+62
-62
lines changed

next.config.js

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

next.config.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
webpack(config, { dev }) {
5+
if (dev) {
6+
config.watchOptions = {
7+
poll: true,
8+
};
9+
}
10+
return config;
11+
},
12+
reactStrictMode: true,
13+
output: "export",
14+
};
15+
16+
module.exports = nextConfig;

package-lock.json

Lines changed: 44 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"format_check": "prettier --check \"**/*.{ts,tsx,md,js,json,yml,yaml}\""
1414
},
1515
"dependencies": {
16-
"cross-env": "^7.0.3",
1716
"next": "^15.2.4",
1817
"react": "^19.0.0",
1918
"react-dom": "^19.0.0",
@@ -28,10 +27,9 @@
2827
"eslint": "^8.0.0",
2928
"eslint-config-next": "^15.2.4",
3029
"jest": "29.7.0",
31-
"jest-environment-jsdom": "29.7.0",
30+
"jest-environment-jsdom": "^29.7.0",
3231
"postcss": "^8",
3332
"prettier": "^3.3.3",
34-
"tailwindcss": "^3.3.0",
35-
"ts-node": "^10.9.2"
33+
"tailwindcss": "^3.3.0"
3634
}
3735
}

0 commit comments

Comments
 (0)