Vite with SSL and not committed SNS #2981
Draft
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Steps to run the NNS dapp frontend against mainnet:
/etc/hosts
add a line127.0.0.1 nns.ic0.app
sudo killall -HUP mDNSResponder
(this works on Mac, might be different on other OSes?)DFX_NETWORK=mainnet ./config.sh
frontend
directory, runnpm ci
frontend
directory, start the dev server:npm run dev -- --port 443 --https --host nns.ic0.app
(this may ask for permission to install a custom certificate; this is necessary)Clean up when you're done
/etc/hosts
$HOME/.vite-plugin-mkcert/mkcert -uninstall
Steps I took to create the PR
npm i [email protected] -D
vite.config.ts
addimport mkcert from 'vite-plugin-mkcert'
and changeplugins: [sveltekit()],
toplugins: [sveltekit(), mkcert()]
, and below it addserver: { https: true },
https://dfinity.slack.com/archives/C03H6QEPW5D/p1690358000036119?thread_ts=1690309853.741629&cid=C03H6QEPW5D