Results 18 comments of Simon Babay

@dohomi You can already register some middlewares with server plugins: - https://universal-vue.github.io/docs/plugins/server.html#write-your-own-plugin - Example: https://github.com/universal-vue/uvue/blob/master/packages/%40uvue/server/plugins/gzip.js For sitemap, it's a nice feature to have indeed ! I'll put it on my...

Here is a dirty workaround : ``` javascript module.directive('dndNodragInput', function() { return function(scope, element, attr) { element.on('focus', function(){ element.attr("draggable", "false"); element.parents('[draggable="true"]').attr('draggable', 'false'); }); element.on('blur', function(){ element.attr("draggable", "true"); element.parents('[draggable="false"]').attr('draggable', 'true'); });...

Other solution here : https://github.com/marceljuenemann/angular-drag-and-drop-lists/issues/127#issuecomment-236542050 ?

I don't if it can help, I have same issue here with a code like this: ```ts await esbuild(/* ...*/); process.exit(0); ``` If I add a timeout for exit, problem...

Hi, I've done a webpack plugin for this: https://github.com/chymz/nuxt-starter/blob/critical-css/internals/webpack/critical.js It's a bit hacky, but works... only in SPA mode... I don't know how to handle that with SSR index.html

You are right, this is an old project, I dont use Angular anymore and dont have time to maintain it, but, if you want my tought on your comment: Haters...

Did you try this : ```js import { Component, ViewChild } from '@angular/core'; @Component({ selector: 'my-app', template: `` }) export class AppComponent { @ViewChild('editor') editor:any; ngOnInit() { console.log(this.editor.instance); } }...

Did you try this : https://github.com/chymz/ng2-codemirror/issues/20#issuecomment-310621559 ?