© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Adam Kościelniak
I like this, but one problem with this solution: If I want to have variables for my backend like keys for my DB I have to use the VITE_ pattern which makes it also visible on the front-end :(.
Any solution for that?
noam honig
Creator of remult.dev
I solved that using 'dotenv'
And placing these variables in a .env file - like I would do in my node js server
import {config} from 'dotenv' config() console.log({ test: process.env["TESTING123"] })
.env
TESTING123=works