Beej
Beej
Going by @jackfox10's lead, googling "singleSpaReact \_\_webpack_public_path\_\_", and wouldn't you know, 2nd hit was handy concrete code sample... see how they hooked setting \_\_webpack_public_path\_\_ inside of "bootstrap", which sounds like...
Yes, going back to post 102, webpack.config should be a trivial change, will hopefully get time to try tomorrow https://github.com/CanopyTax/single-spa/issues/102#issuecomment-314202867
thanks @jackfox10, i got back into this a little... i forgot what i had previously run into along the way... i think there is something else besides the public path...
> Yes it should be trivial. If you don't have time tomorrow, I will submit a PR next week with a lazy example next week. @jackfox10, just a friendly nudge...
Thanks @jackfox10, i will appreciate whenever you can scratch out a moment, definitely know how it goes =) besides the public_path piece, I'm missing something crucial with the chunked module...
On my project we've moved away from the micro-spa idea with a re-visioning of the project's complexities that hindered development velocity. I'd say we were looking at micro-spas for three...
see #35. it seems CSD must be performed within openconnect-sso's flow and some of us have been successful in doing it that way, by sending back a previously captured flat...
> @Mucka I am not able to select host in Cisco AnyConnect Client... it took me a sec to realize you're working on capturing your anyconnect hostscan response via the...
@Mucka - very cool. way to persevere. and good on you for sharing your notes.
here's tweaked Get-FileEncoding that works for pwsh 7.1.4 ``` function Get-FileEncoding($Path) { $bytes = [byte[]]((Get-Content $Path -AsByteStream -Raw -ReadCount 4)[0]) if(!$bytes) { return 'utf8' } switch -regex ('{0:x2}{1:x2}{2:x2}{3:x2}' -f $bytes[0],$bytes[1],$bytes[2],$bytes[3])...