first intial
This commit is contained in:
20
frontend/next.config.js
Normal file
20
frontend/next.config.js
Normal file
@@ -0,0 +1,20 @@
|
||||
//@ts-check
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||
const { composePlugins, withNx } = require('@nx/next');
|
||||
|
||||
/**
|
||||
* @type {import('@nx/next/plugins/with-nx').WithNxOptions}
|
||||
**/
|
||||
const nextConfig = {
|
||||
// Use this to set Nx-specific options
|
||||
// See: https://nx.dev/recipes/next/next-config-setup
|
||||
nx: {},
|
||||
};
|
||||
|
||||
const plugins = [
|
||||
// Add more Next.js plugins to this list if needed.
|
||||
withNx,
|
||||
];
|
||||
|
||||
module.exports = composePlugins(...plugins)(nextConfig);
|
||||
Reference in New Issue
Block a user