line / create-liff-app

Start developing LIFF application with a simple CLI command.
https://developers.line.biz/en/docs/liff/
Apache License 2.0
63 stars 7 forks source link

Fix: generate `.env.local` instead of `.env` for next.js projects #8

Closed BWsix closed 2 years ago

BWsix commented 2 years ago

Unlike other frameworks, projects generated by create-next-app use .env.local instead of .env. This can be verified by the fact that the .gitignore in the next.js template does not include .env.

This PR updates the generator to generate .env.local instead of .env for next.js projects.