Skip to content

project.config overrides don't always work #979

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
vip32 opened this issue Jun 9, 2016 · 1 comment
Closed

project.config overrides don't always work #979

vip32 opened this issue Jun 9, 2016 · 1 comment

Comments

@vip32
Copy link

vip32 commented Jun 9, 2016

when using the following project.config.ts the PORT override is not used. after using npm start the site is still being served on port 5555. however the overridden APP_TITLE works fine.
Other override like PROD_DEST also are ignored. Changing the values directly in seed.config.ts is gives the desired result and the changes are applied (start or build.prod tasks).

is this a bug or am i overlooking something?

export class ProjectConfig extends SeedConfig {

  PROJECT_TASKS_DIR = join(process.cwd(), this.TOOLS_DIR, 'tasks', 'project');

  constructor() {
    super();
    this.APP_TITLE = 'Event|Feedback2';
    this.PORT = 1133;
@mgechev
Copy link
Owner

mgechev commented Jun 9, 2016

Seems like duplicate of #823 which is solved by #968.

@mgechev mgechev closed this as completed Jun 9, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants