Create a file in the root of your project:
-
For development create an
.env.developement
file -
For production create an
.env.production
file
Then copy content of .env.sample
file according to your requirement.
Install packages:
npm install
# or
yarn install
Run the development server:
npm run dev
# or
yarn dev
Build the production:
npm run build
# or
yarn build