Dominic Elm
commited on
fix(FileTree): hidden file patterns (#31)
Browse files
packages/bolt/app/components/workbench/FileTree.tsx
CHANGED
@@ -4,7 +4,7 @@ import { classNames } from '~/utils/classNames';
|
|
4 |
import { renderLogger } from '~/utils/logger';
|
5 |
|
6 |
const NODE_PADDING_LEFT = 12;
|
7 |
-
const DEFAULT_HIDDEN_FILES = [/\/node_modules\//,
|
8 |
|
9 |
interface Props {
|
10 |
files?: FileMap;
|
|
|
4 |
import { renderLogger } from '~/utils/logger';
|
5 |
|
6 |
const NODE_PADDING_LEFT = 12;
|
7 |
+
const DEFAULT_HIDDEN_FILES = [/\/node_modules\//, /\/\.next/, /\/\.astro/];
|
8 |
|
9 |
interface Props {
|
10 |
files?: FileMap;
|