static-path
static-path copied to clipboard
I'm currently working on and express backend with isolated routers. # Example `app.ts` ```ts const app = express() app.use('/api', api) app.get('/', (req, res) => res.send('hello world')) app.use(catch404) app.use(errorHandler) ``` `api.ts`...
> Angular\src\app\core\paths.ts depends on 'static-path'. CommonJS or AMD dependencies can cause optimization bailouts. For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies I was using "static-path": "0.0.1" but still got the warning after upgrading...