From 9516c54fdeccc6710f8407431430113586e8fac1 Mon Sep 17 00:00:00 2001 From: Anthony Nahas Date: Fri, 29 Nov 2019 21:51:49 +0100 Subject: [PATCH] fix(project): integration of prerender --- .../src/lib/service/ngx-linkifyjs.service.spec.ts | 3 ++- static.paths.ts | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 static.paths.ts diff --git a/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts b/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts index e03a4e6f..1c7b1929 100644 --- a/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts +++ b/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts @@ -7,7 +7,8 @@ import * as hashtag from 'linkifyjs/plugins/hashtag'; import * as mention from 'linkifyjs/plugins/mention'; import {NgxLinkifyjsService} from './ngx-linkifyjs.service'; -import {Link, LinkType} from '..'; +import {LinkType} from '../enum/linktype.enum'; +import {Link} from '../interfaces/ngx-linkifyjs.interface'; describe('NgxLinkifyjsService without importing hashtag/mention', () => { beforeEach(() => { diff --git a/static.paths.ts b/static.paths.ts new file mode 100644 index 00000000..f700c61f --- /dev/null +++ b/static.paths.ts @@ -0,0 +1,3 @@ +export const ROUTES = [ + '/', +];