Deploy your Qwik City applications on Tilda with full support for server-side rendering and static file serving.
Ensure your Qwik City project is configured to use the Node.js adapter. This will generate the necessary server entry files that Tilda needs to run your application. Follow the Qwik Node.js deployment guide to set up your project correctly.
Tilda looks for one of the following server entry files in your project's server
directory:
entry.fastify.js
- For Fastify adapterentry.express.js
- For Express adapterTo build your Qwik City project for deployment on Tilda, use the following command:
tilda build qwik
By default, this command:
npm run build
in your project directoryserver
directorydist
directoryIf you need to use a different build command, you can specify it using the --buildCommand
flag:
tilda build qwik --buildCommand 'yarn build'
To build a project in a different directory, use the --projectDir
flag:
tilda build qwik --projectDir ./path/to/project
entry.fastify.js
or entry.express.js
exists in your server
directoryTip: Run tilda
to check your CLI version.