[monorepo][m] - restructuring

- renamed apps to examples
- renamed libs to packages
- fixed data-literate build
This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-11 13:23:53 -03:00
parent ca3eccad86
commit b2438e655f
161 changed files with 6997 additions and 4524 deletions

View File

@@ -0,0 +1,17 @@
//@ts-check
// 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 = {
nx: {
// Set this to true if you would like to use SVGR
// See: https://github.com/gregberge/svgr
svgr: false,
},
};
module.exports = withNx(nextConfig);