mirror of
https://github.com/tedkulp/vidgrab
synced 2026-03-04 13:10:04 -05:00
16 lines
382 B
JavaScript
16 lines
382 B
JavaScript
// 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 false if you do not want to use SVGR
|
|
// See: https://github.com/gregberge/svgr
|
|
svgr: true,
|
|
},
|
|
};
|
|
|
|
module.exports = withNx(nextConfig);
|