1.0.9 • Published 3 years ago

@goesvt/svelte-use-env v1.0.9

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

then, you can create & use .env file as follows

APP_KEY=vr9e29399g83gnrvesd
/* App.js */

console.log(process.env.APP_KEY); // vr9e29399g83gnrvesd
1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago