chore: remove comments

This commit is contained in:
Daniel Roe 2023-08-03 13:51:29 +01:00
parent 1d847c7514
commit 87f455b20b
1 changed files with 1 additions and 3 deletions

View File

@ -133,8 +133,6 @@ function baseResolve (ctx: WebpackConfigContext) {
// TODO: this might be refactored as default modulesDir?
const webpackModulesDir = ['node_modules'].concat(ctx.options.modulesDir)
// console.log({webpackModulesDir})
ctx.config.resolve = {
extensions: ['.wasm', '.mjs', '.js', '.ts', '.json', '.vue', '.jsx', '.tsx'],
alias: ctx.alias,
@ -144,7 +142,7 @@ function baseResolve (ctx: WebpackConfigContext) {
}
ctx.config.resolveLoader = {
// modules: webpackModulesDir,
modules: webpackModulesDir,
...ctx.config.resolveLoader
}
}