14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
import type { NextConfig } from "next";
|
|
import { codeInspectorPlugin } from 'code-inspector-plugin';
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
turbopack: {
|
|
rules: codeInspectorPlugin({
|
|
bundler: 'turbopack',
|
|
}),
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|