Skip to content

Commit cabc432

Browse files
authored
Remove next.js dependency (#17)
* Remove nextjs as a dependency * Change build * remove more next, lint fix * eslint remove next * Fix font * Add local font * Fix manifest icons * Try fix icons * Fix favicon * Change apple-touch-icon * Remove unused web-vitals; fix ts * Lint fix * Fix tests * lint configs * Cleanup
1 parent ec736aa commit cabc432

Some content is hidden

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

44 files changed

+17606
-5135
lines changed

.eslintrc.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
{
2-
"extends": ["next/core-web-vitals", "prettier"],
3-
"plugins": ["prettier"],
2+
"extends": ["prettier"],
3+
"plugins": ["prettier", "react"],
44
"rules": {
55
"prettier/prettier": ["error"]
6+
},
7+
"parserOptions": {
8+
"ecmaVersion": "latest",
9+
"sourceType": "module",
10+
"ecmaFeatures": {
11+
"jsx": true
12+
}
13+
},
14+
"env": {
15+
"es6": true
616
}
717
}

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.next
2+
build/

config-overrides.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
const webpack = require('webpack');
2+
3+
module.exports = function override(config) {
4+
const fallback = config.resolve.fallback || {};
5+
Object.assign(fallback, {
6+
crypto: false, // require.resolve("crypto-browserify") can be polyfilled here if needed
7+
stream: false, // require.resolve("stream-browserify") can be polyfilled here if needed
8+
assert: false, // require.resolve("assert") can be polyfilled here if needed
9+
http: false, // require.resolve("stream-http") can be polyfilled here if needed
10+
https: false, // require.resolve("https-browserify") can be polyfilled here if needed
11+
os: false, // require.resolve("os-browserify") can be polyfilled here if needed
12+
url: false, // require.resolve("url") can be polyfilled here if needed
13+
zlib: false, // require.resolve("browserify-zlib") can be polyfilled here if needed
14+
});
15+
config.resolve.fallback = fallback;
16+
config.plugins = (config.plugins || []).concat([
17+
new webpack.ProvidePlugin({
18+
process: 'process/browser',
19+
Buffer: ['buffer', 'Buffer'],
20+
}),
21+
]);
22+
config.ignoreWarnings = [/Failed to parse source map/];
23+
config.module.rules.push({
24+
test: /\.(js|mjs|jsx)$/,
25+
enforce: 'pre',
26+
loader: require.resolve('source-map-loader'),
27+
resolve: {
28+
fullySpecified: false,
29+
},
30+
});
31+
return config;
32+
};

jest.config.js

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
const nextJest = require('next/jest');
2-
3-
const createJestConfig = nextJest({
4-
// Provide the path to your Next.js app to load next.config.js and .env files in your test environment
5-
dir: './',
6-
});
7-
8-
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async
9-
module.exports = createJestConfig({});
1+
module.exports = {
2+
preset: 'ts-jest',
3+
testEnvironment: 'node',
4+
};

jsconfig.json

-7
This file was deleted.

next.config.js

-4
This file was deleted.

0 commit comments

Comments
 (0)