1.0.5 • Published 4 years ago
@goesvt/svelte-env v1.0.5
svelte withe environment variables
The sveltejs/template starter project doesn’t allow the use of environment variables out-of-the-box.
Env can be used by using this module with svelte.
how to use
installation
npm install @goesvt/svelte-use-env
useage
Just following below code.
in rollup.config.js
file
...
import insertEnv from "@goesvt/svelte-use-env";
const production = !process.env.ROLLUP_WATCH;
...
export default {
...,
plugins : [
...,
insertEnv(), // insert here !!
],
...
}