0.0.1 • Published 7 years ago
@nuxtjs/separate-env v0.0.1
Separate env module - Tear your variables apart!
Features
- Separated environment variables for
serverandclientbuild - Thoroughly tested!
Setup
- Add
@nuxtjs/separate-envdependency to your project using yarn or npm
Configuration
To define environment variables only available on server/client side,
use the env key of your nuxt.config.js and nest the variables
in a server or client object:
{
env: {
server: {
ONLY_SERVER: 'yup',
DIFFERENT_ON_BOTH: 'server'
},
client: {
ONLY_CLIENT: 'okay',
DIFFERENT_ON_BOTH: 'client'
},
normalEnvVariableThatWillBeAvailableEverywhere: 'Hi'
}
}That's it! You are good to go.
Caveats
IMPORTANT: Be aware that server-side includes every first render of your application.
Your secret tokens won't be included anywhere except you use them
Development
- Clone this repository
- Install dependencies using
yarn installornpm install - Start development server using
npm run dev
License
Copyright (c) Alexander Lichter
0.0.1
7 years ago