File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ COPY --chown=node:node .remotejson-cache* ./.remotejson-cache
93
93
COPY --chown=node:node .pageinfo-cache.json.br* ./.pageinfo-cache.json.br
94
94
COPY --chown=node:node data ./data
95
95
COPY --chown=node:node next.config.js ./
96
+ COPY --chown=node:node tsconfig.json ./
96
97
97
98
EXPOSE $PORT
98
99
Original file line number Diff line number Diff line change 1
1
import express from 'express'
2
- import middleware from '.. /middleware/index.js'
2
+ import middleware from '@/frame /middleware/index.js'
3
3
4
4
function createApp ( ) {
5
5
const app = express ( )
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ export default {
5
5
exclude : [ '**/tests/playwright-*.spec.ts' ] ,
6
6
// Default is `!process.env.CI`
7
7
watch : false ,
8
+ // vitest doesn't account for tsconfig.json `paths` settings so we have to
9
+ // manually set this alias to resolve our TS @-imports
10
+ alias : {
11
+ '@/' : new URL ( './src/' , import . meta. url ) . pathname ,
12
+ } ,
8
13
9
14
globalSetup : './src/tests/vitest.setup.ts' ,
10
15
} ,
You can’t perform that action at this time.
0 commit comments