[Tip] Quickly set up a new project

Hey Bubblers!

Saw this Tweet from @nocodelife on Twitter and couldn’t resist reposting to share on the Bubble Forum :blush:


@Kayami has a solution!


Open the browser console while you’re on the bubble editor page.
Copy paste these two lines of javascript in your console and hit enter.

let styles = appquery.styles();
styles.forEach((s) => appquery.delete_style(s.name(), s));

3 Likes

does it do the same that the “optimize app” trick on a blank app @johnny ?

Be careful with this one if you already have prototyped stuff with those styles, it’ll give you issues for each element (speaking from experience, unfortunately)