1.0.5 • Published 3 years ago

@goesvt/svelte-env v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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 !!
    ],
    ...
}