Taukeer Liaqat

Results 3 comments of Taukeer Liaqat

Thanks @CroMarmot this is really useful. Is there any way I can do it module builder (webpack). I tried to do it with `yarn dev:esm` but webpack generates following error...

This works fine for me too. Do you receive any webpack error when you import it from 'dist'? `import Vue from './dist'` (I guess webpack will automatically pick `vue.runtime.esm.js`)

@mitomm if you are running angular ssr, make sure you also check `moduleFilename.includes('node-loader.js')` for calling `run()` method. ie ``` if (moduleFilename === __filename || moduleFilename.includes('iisnode') || moduleFilename.includes('node-loader.js')) { run() }...