This is a Nuxt 4 application demonstrating the usage of the Nuxt Form Engine module.
Add the Nuxt Form Engine layer to your nuxt.config.ts:
export default defineNuxtConfig({
extends: ['../nuxt-form-engine'],
})make sure that the path to the layer is correct. you have to have the nuxt-form-engine folder next to this project folder.
- /projects
|-- /nuxt-form-engine
|-- /your-project
or just ensure you're using the correct relative path.
Make sure to install dependencies:
bun installStart the development server on http://localhost:3000:
bun run devBuild the application for production:
bun run buildLocally preview production build:
bun run previewCheck out the deployment documentation for more information.