Next.js Discord

Discord Forum

How to change position of Turbopack?

Unanswered
Reddish carpenter ant posted this in #help-forum
Open in Discord
Reddish carpenter antOP
Hi there!

How do I change the position of turbopack from left to right? It's really not helping showing all the time on the left side - right side would be just fine though.

8 Replies

@Reddish carpenter ant
in the next.config.ts
devIndicators?: {
/ Show "building..."" indicator in development */
buildActivity?: boolean;
/
Position of "building..." indicator in browser */
buildActivityPosition?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
appIsrStatus?: boolean;
};
there is this option
Unless I'm doing osmething nwrong

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  experimental: {
    ppr: true,
    newDevOverlay: true,
  },
  devIndicators: {
    buildActivityPosition: "bottom-right",
  },
};

export default nextConfig;
Ah, idk then
I tought maybe this was it