Bundlers
A short intro guide that introduces different configuration for using different bundlers in Aurelia applications.
Webpack
Vite
Installing
For the latest stable version:
For our nightly builds:
Usage
In vite.config.js
:
For apps in TypeScript, an extra typing definition is required for html module. You can add following file to your typing folder.
Note that this is generated by default by the aurelia cli.
html.d.ts
Dev config
By default, the aurelia vite plugin generates aliases to dev packages for better experience during development. It'll detect development mode based on the mode
config from vite
. You can also override using useDev
options, in case there needs to be clarity into some behavior of the applications:
Last updated