Use .env variables in your Javascript files with Webpack in Laravel Elixir.
npm install laravel-elixir-env --save
or
yarn add laravel-elixir-env
- Laravel Elixir
- Laravel-elixir-webpack-official
Require the package in your gulpfile, after Elixir:
const elixir = require('laravel-elixir');
require('laravel-elixir-env');
Now you can access your variables in all the scripts that are packed with Webpack like so:
process.env.VAR_NAME
Optionally, you can set the path of the default .env file or set any dotenv configuration option like so:
require('laravel-elixir-env').config({ path: 'my-folder/.env' });
Be careful with sensitive variables that can hold private information. Don't forget to recompile on all your environments.
If you like this, please star on GitHub!
Issues and Pull Requests welcome.
Contributions are welcome, thanks to y'all :)
Appstract is a small team from The Netherlands. We create (open source) tools for webdevelopment and write about related subjects on Medium. You can follow us on Twitter, buy us a beer or support us on Patreon.
Laravel-elixir-env is licensed under The MIT License (MIT).