Vite 8 beta support, experimental WasmJS support, bug fixes

### Important

- Kotlin users: you may need to upgrade your Node version. See the 'Kotlin' section below.
- Kotlin users: the production output directory has changed from `build/vite/dist` to `build/vite/js/dist`.

### Base

- Upgraded to Vite 8.0.0-beta.2 (#69, !141)
- Added the [`config.autoRewriteIndex`](https://vite-kotlin.opensavvy.dev/api/-vite%20for%20-gradle/opensavvy.gradle.vite.base.config/-vite-config/auto-rewrite-index.html) option to more easily support mixed Webpack/Vite projects (#66, !124)

### Kotlin

This release updates the Vite version, and new Vite versions require a newer NodeJS version than the one shipped by default by the Kotlin Gradle Plugin.
For the build to work, you may need to upgrade the NodeJS version you're using as well.
To do so, open the root `build.gradle.kts` file and add:

```kotlin
project.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsPlugin> {
	project.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsEnvSpec>().version = "24.12.0"
}
```

This information has also been added to the [Troubleshooting section of the getting started guide](https://vite-kotlin.opensavvy.dev/guides/index.html#troubleshooting).

- Added experimental WasmJS support (#46, #127, #137)
- Added the `:vitePreview` task to serve the production output locally (66ba462a)
- Fixed the default target which was incorrect, replaced it with `"es2015"` (9c047b0d)
- Fixed external plugins (`config.plugin()`) which were not correctly applied (#65, !139)
- Removed the default plugins `@rollup/plugin-commonjs` and `vite-plugin-top-level-await`, as they are not needed with Vite 8. If you want to continue using Vite 7, you may need to explicitly add them to your build (!141)

### Documentation

- Moved the Troubleshooting section from the main page to the [Getting started guide](https://vite-kotlin.opensavvy.dev/guides/index.html#troubleshooting).

### Dependencies

- Gradle 9.2.0
- Kotlin 2.2.21

### Internal changes

In this release, we have improved our automated test suites, which should make bugs rarer.

### Special thanks

Thanks to Robert Jaros, the author of the KotlinJS frameworks [Kilua](https://kilua.dev/) and [KVision](https://kvision.io/), who contributed most of the improvements in this release.
Since Kilua 0.0.27, you can also find our Vite plugin in the [Kilua project creation wizard in IntelliJ](https://plugins.jetbrains.com/plugin/27530-kilua-project-wizard)!