File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 7
7
"author" :
" Kent C. Dodds <[email protected] > (https://kentcdodds.com/)" ,
8
8
"type" : " module" ,
9
9
"imports" : {
10
- "#*" : " ./*"
10
+ "#app/*" : " ./app/*" ,
11
+ "#tests/*" : " ./tests/*"
11
12
},
12
13
"scripts" : {
13
14
"build" : " run-s build:*" ,
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ async function getBuild() {
201
201
? viteDevServer . ssrLoadModule ( 'virtual:remix/server-build' )
202
202
: // @ts -ignore this should exist before running the server
203
203
// but it may not exist just yet.
204
- await import ( '# build/server/index.js' )
204
+ await import ( '../ build/server/index.js' )
205
205
// not sure how to make this happy 🤷♂️
206
206
return build as unknown as ServerBuild
207
207
}
Original file line number Diff line number Diff line change 14
14
"allowJs" : true ,
15
15
"forceConsistentCasingInFileNames" : true ,
16
16
"paths" : {
17
- "#*" : [" ./*" ],
17
+ "#app/*" : [" ./app/*" ],
18
+ "#tests/*" : [" ./tests/*" ],
18
19
"@/icon-name" : [
19
20
" ./app/components/ui/icons/name.d.ts" ,
20
21
" ./types/icon-name.d.ts"
You can’t perform that action at this time.
0 commit comments