We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11eeb99 commit ee4af65Copy full SHA for ee4af65
dev-packages/e2e-tests/test-applications/create-remix-app-express-vite-dev/vite.config.ts
@@ -7,5 +7,12 @@ import { installGlobals } from '@remix-run/node';
7
installGlobals();
8
9
export default defineConfig({
10
- plugins: [remix(), tsconfigPaths()],
+ plugins: [
11
+ remix(),
12
+ tsconfigPaths({
13
+ // The dev server config errors are not relevant to this test app
14
+ // https://github.com/aleclarson/vite-tsconfig-paths?tab=readme-ov-file#options
15
+ ignoreConfigErrors: true,
16
+ }),
17
+ ],
18
});
0 commit comments