monorepo 에서 사용되는 라이브러리는 번들 시, 어떻게 dependency로 잡히나?

return withNx({

nx: {

// Set this to true if you would like to to use SVGR

// See: https://github.com/gregberge/svgr

svgr: false,

},

compiler: {

styledComponents: true,

},

experimental: {

esmExternals: false,

},

webpack(config) {

config.plugins.push(

new webpack.DefinePlugin({

...env,

})

);