Skip to content

Commit 00b7bf5

Browse files
authored
fix: @fuels/ui storybook 404 error (#262)
1 parent 63227c7 commit 00b7bf5

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export const config = {
2+
matcher: [
3+
/*
4+
* Match all request paths except for the ones starting with:
5+
* - ui (UI storybook)
6+
* - storybook (explorer storybook)
7+
* - portal-storybook (bridge storybook)
8+
*/
9+
'/((ui|storybook).*)',
10+
],
11+
};

turbo.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"pipeline": {
55
"ts:check": {
66
"outputs": ["app-portal/**/*.typegen.ts"],
7-
"cache": true
7+
"cache": false
88
},
99
"build:lib": {
1010
"outputs": ["dist/**", "build/**", ".next/**"],
11-
"cache": true
11+
"cache": false
1212
},
1313
"build:preview": {
1414
"outputs": [
@@ -19,7 +19,7 @@
1919
"app-explorer/public/storybook/**"
2020
],
2121
"dependsOn": ["^build:lib", "^ts:check"],
22-
"cache": true
22+
"cache": false
2323
},
2424
"test": {
2525
"outputs": ["**/**/report.json", "coverage/**"],

0 commit comments

Comments
 (0)