パーセルを使用してフロントエンド アプリをビルドします。これは、ビルドに使用するコマンドです。
cross-env NODE_ENV=dev parcel build src/index.html --no-minify --out-dir dist/dev
構築するproduction
cross-env NODE_ENV=production parcel build src/index.html --out-dir dist/production
そこにはindex.html
いつものように
<script src="app.js"></script>
次にapp.js
import settings from './settings.js'
私は何かを達成したい
settings.js
if(process.env.NODE_ENV == 'dev') {
server = 'http://localhost:1235'
} else if (process.env.NODE_ENV == 'production') {
server = 'http://public-domain.com'
}