Brandon Taylor

Results 19 comments of Brandon Taylor

@Shahar-Galukman I added the custom webpack config and `style-loader`, `css-loader` and `postcss-loader` dependencies, however now I'm getting: ```bash ./node_modules/monaco-editor/min/vs/editor/editor.main.css - Error: Module build failed (from ./node_modules/postcss-loader/dist/cjs.js): SyntaxError (2:7) /Users/btaylor/work/angular-apps/mdsl-authoring/node_modules/monaco-editor/min/vs/editor/editor.main.css Unknown...

Yes. Here's the relevant portion of my angular.json ``` architect": { "build": { "builder": "@angular-builders/custom-webpack:browser", "options": { "customWebpackConfig": { "path": "./custom-webpack.config.js", "mergeRules": { "externals": "replace" } }, ``` Here's my...

Slightly different errors if I only specify `css-loader`: ```bash ./node_modules/monaco-editor/min/vs/editor/editor.main.css - Error: Module build failed (from ./node_modules/postcss-loader/dist/cjs.js): SyntaxError (1:1) /Users/btaylor/work/angular-apps/mdsl-authoring/node_modules/monaco-editor/min/vs/editor/editor.main.css Unknown word > 1 | // Imports | ^ 2...

I was able to get the CSS issue resolved with the following config: ```javascript var path = require('path'); var MONACO_DIR = path.join(__dirname, 'node_modules/monaco-editor'); module.exports = { module: { rules: [...

Solved: In main.js, override `buildTitle`: ``` import {NavigationContext} from 'aurelia-router'; NavigationContext.prototype.standardBuildTitle = NavigationContext.prototype.buildTitle; function buildTitle(separator=' | ') { var titleValues = this.standardBuildTitle(separator).split(separator), routeTitle = titleValues[0], configTitle = titleValues.slice(1); configTitle.push(routeTitle); return...

Perhaps a config option to append or prepend the route title?

Seeing the same issue on a new install in Windows 8.1 Pro

I have exactly the same issue using: @okta/okta-angular: 2.2.1 @okta/okta-signin-widget: 4.5.1 in Angular 10.1.3 I've tried removing and re-installing node_modules and also tried implementing my own component to handle the...

This error is happening on OS X. I'm using Big Sur Beta 11.0 and Chrome 6.0.4240.80, but other browsers are exhibiting the same behavior.