Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for .env files #1153

Open
jonit-dev opened this issue Oct 2, 2022 · 1 comment
Open

Support for .env files #1153

jonit-dev opened this issue Oct 2, 2022 · 1 comment

Comments

@jonit-dev
Copy link

Current Behavior

It seems that tsdx doesn't have support for loading .env files.
Even when adding a custom tsdx.config.js with this plugin, it loads variables as undefined.

Desired Behavior

Load .env files properly.

@eliezer-souza
Copy link

@jonit-dev It worked for me that way

const dotenv = require('rollup-plugin-dotenv');

module.exports = {
  rollup(config, options) {
    config.plugins.unshift(dotenv.default());

    return config;
  },
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants