Andrés Rodríguez
Andrés Rodríguez
I use vue-router in my project. I have not touched publicPath, only assetPublicPath. As I said, everything builds and works just fine.
@LinusBorg I'm using ES6 modules. They compile together just fine.
@LinusBorg This is still a bug and should be reopened. In `config/index.js` changing `build.assetsPublicPath` to './' and leaving `dev.assetsPublicPath` fixes serving over file:/// protocol while at the same time allowing...
It's not "my" usecase. It's the default config breaking the `file:///` protocol. Whenever it started doing that it became a bug. Not to mention that this not only affects Cordova...
I'd say with quite some confidence that the `file:///` protocol is a bigger standard than code-splitting and therefore has more merit as a default. But even if the default is...
It'd be a good idea to explicitly mention the need to initialize submodules before compiling, or even better: Have build.rs do it for the user instead of complaining it's not...
Thanks! It seems I didn't have it on that shell at the time. However, another error emerges: ``` Compiling compiler_builtins v0.1.82 Compiling proc-macro2 v1.0.47 Compiling unicode-ident v1.0.5 Compiling quote v1.0.21...
I have. This is my flake.nix which defines my entire dev environment of top of my system (although the system exposes very little): ``` { inputs = { nixpkgs.url =...
Overlays allow modifying the list of available packages, I'm only installing `gcc-riscv32-esp32c3-elf-bin` package from there because otherwise I get this error when running `cargo build`: ``` fatal: No names found,...
@N3xed Thanks for the response. Could you tell me how is clang being invoked to find these headers? I am not very familiar with C build systems. I do know...