[monorepo][m] - simplify examples

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-24 13:07:22 -03:00
parent cea928af7d
commit 975887c127
10 changed files with 5953 additions and 113 deletions

View File

@@ -1,9 +1,3 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { withNx } = require('@nrwl/next/plugins/with-nx');
/**
* @type {import('@nrwl/next/plugins/with-nx').WithNxOptions}
**/
const nextConfig = {
publicRuntimeConfig: {
DMS: process.env.DMS ? process.env.DMS : '',
@@ -18,11 +12,6 @@ const nextConfig = {
],
};
},
nx: {
// Set this to true if you would like to use SVGR
// See: https://github.com/gregberge/svgr
svgr: false,
},
};
module.exports = withNx(nextConfig);
module.exports = nextConfig;