Skip to content

Commit

Permalink
fix(kkt): Fix KKT_CLEAR_CONSOLE evn invalid.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jan 25, 2021
1 parent 75346d0 commit c1d6d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/scripts/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ import { cacheData } from '../utils/cacheData';
export default async function build(argvs: ParsedArgs) {
try {
const paths = await overridePaths(argvs);
await overridesClearConsole(argvs);
const webpackConfigPath = `${reactScripts}/config/webpack.config${!isWebpackFactory ? '.dev' : ''}`;
const devServerConfigPath = `${reactScripts}/config/webpackDevServer.config.js`;
const createWebpackConfig: (env: string) => Configuration = require(webpackConfigPath);
const createDevServerConfig: DevServerConfigFunction = require(devServerConfigPath);
const overrides = require('../overrides/config');
const kktrc: KKTRC = await overrides();
await overridesClearConsole(argvs);
await overridesOpenBrowser(argvs);

/**
Expand Down

2 comments on commit c1d6d14

@vercel
Copy link

@vercel vercel bot commented on c1d6d14 Jan 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

kkt-bundle-example – ./

kkt-bundle-example.398188662.vercel.app
kkt.vercel.app
kkt-bundle-example-git-master.398188662.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c1d6d14 Jan 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

kkt-basic-example – ./

kkt-basic-example-git-master.398188662.vercel.app
kkt-basic-example.398188662.vercel.app
kkt.vercel.app

Please sign in to comment.