Fixed port for local development

- updated helpers to use port 4000 for local development
This commit is contained in:
Peter Zimon 2022-07-08 13:16:03 +02:00
parent 4ac29fc40a
commit d44571be16

View File

@ -109,6 +109,6 @@ export function getBundledCssLink({appVersion}) {
if (process.env.NODE_ENV === 'production' && appVersion) {
return `https://unpkg.com/@tryghost/comments-ui@~${appVersion}/umd/main.css`;
} else {
return 'http://localhost:3000/main.css';
return 'http://localhost:4000/main.css';
}
}