├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── nuxt.config.ts ├── package.json ├── rules └── no-directly-use-process.js ├── src ├── components │ ├── Logo.vue │ └── README.md ├── layouts │ ├── README.md │ └── default.vue ├── pages │ ├── README.md │ └── index.vue ├── plugins │ ├── README.md │ └── environments.ts ├── store │ └── README.md └── types │ └── shims-vue.d.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/README.md -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/package.json -------------------------------------------------------------------------------- /rules/no-directly-use-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/rules/no-directly-use-process.js -------------------------------------------------------------------------------- /src/components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/components/Logo.vue -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/layouts/README.md -------------------------------------------------------------------------------- /src/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/layouts/default.vue -------------------------------------------------------------------------------- /src/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/pages/README.md -------------------------------------------------------------------------------- /src/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/pages/index.vue -------------------------------------------------------------------------------- /src/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/plugins/README.md -------------------------------------------------------------------------------- /src/plugins/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/plugins/environments.ts -------------------------------------------------------------------------------- /src/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/store/README.md -------------------------------------------------------------------------------- /src/types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/src/types/shims-vue.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/how-to-safety-env-use-in-nuxt/HEAD/yarn.lock --------------------------------------------------------------------------------