Learn how to prepare and publish your Replit Extension to the store, including icon design, build configuration, and the review process.
" "
and set the output directory to your Replit App’s base URL .
.
npx vite build
will create a static folder dist
. Set build
to vite build
in your package.json
file and set the extension’s build command to npm run build
. Next, set the output folder to dist
.
next.config.js
, set the output
property to "export"
.
The required steps to build the static output folder consist of:
.next
foldernext export
"export"
command in package.json
.
next export
will create a static folder out
. In the Extension Devtools, set the build command to npm run export
and the output folder to out
.