We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm submitting a bug report
Library Version: 2.4.0
Operating System: Windows 11
Node Version: 18.13.0
Webpack Version webpack 5.75.0
Browser: Electron 22.0.3
Language: TypeScript 4.5.5
Current behavior: Bootstrapper tries to resolve aurelia-loader-webpack module from <projectRoot>\.webpack\renderer\native_modules but fails.
aurelia-loader-webpack
<projectRoot>\.webpack\renderer\native_modules
Expected/desired behavior: Bootstrapper should properly bootstrap Aurelia app after it's imported in renderer script.
npm init electron-app@latest aurelia-app -- --template=webpack-typescript
npm install aurelia-bootstrapper
src/renderer.ts
import 'aurelia-bootstrapper'
npm run start
The text was updated successfully, but these errors were encountered:
If bootstrapper is causing issues, one can try to temporarily work around it by bootstrapping the application oneself.
// main.js import { Aurelia } from 'aurelia-framework'; export function startApplication() { const au = new Aurelia(); au.use .plugin(...) .globalResources(...) .start() .then(() => au.setRoot(...)) } startApplication();
Sorry, something went wrong.
No branches or pull requests
I'm submitting a bug report
Library Version:
2.4.0
Operating System:
Windows 11
Node Version:
18.13.0
8.9.13
Webpack Version
webpack 5.75.0
Browser:
Electron 22.0.3
Language:
TypeScript 4.5.5
Current behavior:
Bootstrapper tries to resolve
aurelia-loader-webpack
module from<projectRoot>\.webpack\renderer\native_modules
but fails.Expected/desired behavior:
Bootstrapper should properly bootstrap Aurelia app after it's imported in renderer script.
Steps to reproduce
src/renderer.ts
:The text was updated successfully, but these errors were encountered: