Skip to content

Commit

Permalink
Support Nuxt (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivam-sharma7 authored Jul 21, 2023
1 parent 417321f commit 559b563
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public enum FrameworkType {
SOLID_START("dist", "dev", 3000, Set.of("solid-start")),
ASTRO("dist", "dev", 3000, Set.of("astro")),
NEXT("out", "dev", 3000, Set.of("next")),
NUXT("dist", "dev", 3000, Set.of("nuxt")),
ANGULAR("dist/%s", "start", 4200, Set.of("ng")),
EMBER("dist", "serve", 4200, Set.of("ember-cli")),
AURELIA("dist", "start", 8080, Set.of("aurelia-cli")),
Expand Down
4 changes: 4 additions & 0 deletions docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,10 @@ quarkus.quinoa.build-dir=build
=== Vite
Any app created with https://vitejs.dev/guide/[Vite] are compatible without any change and Hot Module Replacement (HMR) should work by default.

[#nuxt]
=== Nuxt
Any app created with https://v2.nuxt.com/docs/get-started/installation#set-up-your-project[Nuxt] are compatible without any change and Hot Module Replacement (HMR) should work by default.

[#solidstart]
=== Solid Start
Any app created with https://start.solidjs.com/getting-started/what-is-solidstart[SolidStart] are compatible without any change and Hot Module Replacement (HMR) should work by default. It is based on link:#vite[Vite].
Expand Down

0 comments on commit 559b563

Please sign in to comment.