Skip to content

Commit 997bcca

Browse files
fix: import correct app config for SSR
1 parent aeb76a3 commit 997bcca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import 'zone.js/node';
22
import { render } from '@analogjs/router/server';
33

44
import { AppComponent } from './app/app.component';
5-
import { appConfig } from './app/app.config';
5+
import { config } from './app/app.config.server';
66

7-
export default render(AppComponent, appConfig);
7+
export default render(AppComponent, config);

0 commit comments

Comments
 (0)