How to change position of Turbopack?
Unanswered
Reddish carpenter ant posted this in #help-forum
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.
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;
};
/ 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
@Diamond Master 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;
};
Reddish carpenter antOP
Using NextJS Turbopack? That doens't seem to work
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