Skip to content

Instantly share code, notes, and snippets.

@opensussex
Created February 23, 2023 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save opensussex/85c2a8718bc77659225a87f1df67bcda to your computer and use it in GitHub Desktop.
Save opensussex/85c2a8718bc77659225a87f1df67bcda to your computer and use it in GitHub Desktop.
loading environment vars with svelte / rollup in netlify
TEST_VAR="TEST ENVIRONMENT VAR"

I wanted to be able to use local .env file for development but also be able to use the same code to access the environment variable on netlify. I did this by changing how the variables are collected in rollup

<script>
console.log(__myapp)
</script>
import svelte from 'rollup-plugin-svelte';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import livereload from 'rollup-plugin-livereload';
import { terser } from 'rollup-plugin-terser';
import css from 'rollup-plugin-css-only';
import {config} from 'dotenv';
import replace from '@rollup/plugin-replace';
const production = !process.env.ROLLUP_WATCH;
function environmentVariables() {
if (production) {
return {
env: {
isProd: production,
...process.env
}
}
}
return {
env: {
isProd: production,
...config().parsed // attached the .env config
}
}
}
function serve() {
let server;
function toExit() {
if (server) server.kill(0);
}
return {
writeBundle() {
if (server) return;
server = require('child_process').spawn('npm', ['run', 'start', '--', '--dev'], {
stdio: ['ignore', 'inherit', 'inherit'],
shell: true
});
process.on('SIGTERM', toExit);
process.on('exit', toExit);
}
};
}
export default {
input: 'src/main.js',
output: {
sourcemap: true,
format: 'iife',
name: 'app',
file: 'public/build/bundle.js'
},
plugins: [
svelte({
compilerOptions: {
// enable run-time checks when not in production
dev: !production
}
}),
replace({
// stringify the object
__myapp: JSON.stringify(environmentVariables()),
}),
// we'll extract any component CSS out into
// a separate file - better for performance
css({ output: 'bundle.css' }),
// If you have external dependencies installed from
// npm, you'll most likely need these plugins. In
// some cases you'll need additional configuration -
// consult the documentation for details:
// https://github.com/rollup/plugins/tree/master/packages/commonjs
resolve({
browser: true,
dedupe: ['svelte']
}),
commonjs(),
// In dev mode, call `npm run start` once
// the bundle has been generated
!production && serve(),
// Watch the `public` directory and refresh the
// browser on changes when not in production
!production && livereload('public'),
// If we're building for production (npm run build
// instead of npm run dev), minify
production && terser()
],
watch: {
clearScreen: false
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment