8 lines
226 B
Bash
8 lines
226 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# The build step hard-codes variables from the environment into HTML, so it must
|
||
|
# be done with the correct .env.local for runtime.
|
||
|
|
||
|
./node_modules/next/dist/bin/next build
|
||
|
./node_modules/next/dist/bin/next start
|