--- sidebar: false --- ![Announcing TresJS Nuxt Module](/blog/tresjs-nuxt-module.png) --- # Announcing Nuxt Module `@tresjs/nuxt` 🎉 We are absolutetly thriller to announce to the community the release of most anticipated **Nuxt module for TresJS** 🎉 . Special thanks to [NuxtJS](https://nuxtjs.org/) and [DanielRoe](https://twitter.com/danielcroe) for the support and for the amazing work they are doing for the Vue community. 1. Add `@tresjs/nuxt` dependency to your project ```bash # Using pnpm pnpm add @tresjs/nuxt # Using yarn yarn add @tresjs/nuxt # Using npm npm install @tresjs/nuxt ``` 2. Add `@tresjs/nuxt` to the `modules` section of `nuxt.config.ts` ```js export default defineNuxtConfig({ modules: ["@tresjs/nuxt"], }); ``` ## What's Nuxt? 🔥 We took advantage of the [Nuxt module system](https://nuxt.com/docs/guide/going-further/modules) to create a module that will allow you to use TresJS in your Nuxt app with 0-to-none configuration enjoying all the DX perks that comes with Nuxt like: ### Auto import components and composables from the TresJS ecosystem You don't need to import the components or composables from the TresJS ecosystem anymore, they will be auto-imported for you. This is a huge improvement for the DX, you can just start using the components and composables without worrying about importing them. You just need to install the packages you want to use and they will be auto-imported by the module 🧙🏼‍♂️. ```bash # Using pnpm pnpm add @tresjs/cientos @tresjs/post-processing ``` #### Before ```vue ``` #### After 🥹 ```vue ``` ### Client-side only The `` is only loaded in the client-side, so you don't need to worry about **SSR** or **SSG** 😊. ### Vue compiler optimizations ⚙️ Automagically ✨ configure the Vue compiler to recognize the TresJS Components. This is because `` component creates a custom renderer for Vue, so we need to tell the outside Vue app to recognize the TresJS components. Without the module you need to configure the Vue compiler like this: ```ts export default defineNuxtConfig({ vue: { compilerOptions: { isCustomElement: tag => (tag.startsWith('Tres') && tag !== 'TresCanvas') || tag === 'primitive', }, } }) ``` See more [here](http://tresjs.org/guide/troubleshooting.html#failed-resolve-component-trescomponent-%F0%9F%A4%94) ## Share your work 🎨 We want to see what you are creating with TresJS and nuxt, so please share your work with us in our [Discord server](https://discord.gg/UCr96AQmWn) where we have a `#Showcase` area or in our [Twitter](https://twitter.com/tresjs_dev) 😊. Happy coding! 🚀