Skip to content

Instantly share code, notes, and snippets.

@Moizsohail
Last active March 2, 2022 19:06
Show Gist options
  • Save Moizsohail/47fb9dc01b1d0cd9a5c47b3d17a1d495 to your computer and use it in GitHub Desktop.
Save Moizsohail/47fb9dc01b1d0cd9a5c47b3d17a1d495 to your computer and use it in GitHub Desktop.
#!/bin/bash
build() {
echo 'building react'
export INLINE_RUNTIME_CHUNK=false
export GENERATE_SOURCEMAP=false
react-scripts build
rm -rf dist/*
mkdir -p dist
cp -r build/* dist
}
build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment