mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
refactor: use chained configs internally
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
import base from './base';
|
||||
import { IWebpackEnv } from '@nativescript/webpack';
|
||||
import Config from 'webpack-chain';
|
||||
|
||||
// todo: add base configuration for core
|
||||
export default function (env) {
|
||||
export default function (env: IWebpackEnv): Config {
|
||||
const config = base(env);
|
||||
|
||||
return {};
|
||||
return config;
|
||||
}
|
||||
|
Reference in New Issue
Block a user