Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: nextjs 13 migration #82

Merged
merged 21 commits into from
Sep 7, 2023
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
454dc2c
refactor: nextjs 13 migration
gustavovalverde Aug 18, 2023
5b71ccc
Merge branch 'master' into refactor-nextjs-13
gustavovalverde Aug 18, 2023
62656f7
fix: nextjs13 migrations
gustavovalverde Aug 24, 2023
3c11e17
fix(build): use correct reference to variable
gustavovalverde Aug 24, 2023
7302e79
fix(styles): use MUI recommended Nextjs13 approach
gustavovalverde Aug 31, 2023
d32d412
fix(linter): add missing definitions from plugins
gustavovalverde Aug 31, 2023
e375db6
fix(ci): allow building with latest node
gustavovalverde Aug 31, 2023
2dce6ce
fix(linter): use general eslint disable rule
gustavovalverde Aug 31, 2023
2a10f69
fix: tests
gustavovalverde Aug 31, 2023
3f34c3b
imp(build): enable `yarn` cache
gustavovalverde Aug 31, 2023
f4994d3
build(docker): use correct `$PORT` and `$HOSTNAME` handling
gustavovalverde Aug 31, 2023
133d7e6
fix(deploy): use `0.0.0.0` as hostname
gustavovalverde Aug 31, 2023
8f14c1b
fix(build): use a newer Nextjs version to fix route handlers
gustavovalverde Sep 1, 2023
c9bbb4d
build(deps): update app dependencies
JeffreyArt1 Sep 1, 2023
bc9221c
fix(styles): loader positioning
JeffreyArt1 Sep 2, 2023
1bf64b2
fix(ux): use numeric input for cedula field
JeffreyArt1 Sep 2, 2023
c4bec7d
feat: edge-csrf middleware applied
marluanespiritusanto Sep 5, 2023
ecec6cf
Merge branch 'refactor-nextjs-13' of https://github.com/opticrd/cuent…
JeffreyArt1 Sep 6, 2023
d874e26
imp(csrf): just use type
JeffreyArt1 Sep 6, 2023
a7ff126
feat(core): cookie middleware implementation
marluanespiritusanto Sep 7, 2023
d8f30c1
fix(api): getting `validated` query params
marluanespiritusanto Sep 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(ci): allow building with latest node
  • Loading branch information
gustavovalverde committed Aug 31, 2023
commit e375db6951cf6a5a75008ec559f1156080c9d401
6 changes: 6 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -8,6 +8,12 @@ const nextConfig = {
config.plugins.push(
new webpack.IgnorePlugin({ resourceRegExp: /^aws-crt$/ }),
);
if (!isServer) {
config.node = {
fs: 'empty',
};
config.externals = ['dtrace-provider', 'fs'];
}
return config;
},
};