Angular/React/Vue 빌드를 로컬에서 실행하는 방법
node run-build.js
.const express = require('express');
const path = require('path');
const app = express();
/**
* Instead of build provide your build directory.
*/
app.use(express.static(path.join(__dirname, 'build')));
app.get('/*', function (req, res) {
res.sendFile(path.join(__dirname, 'build ', 'index.html'));
});
var server = app.listen(9000, () => {
var port = server.address().port;
console.log('App listening at http://localhost:' + port);
require('child_process').exec(`start http://localhost:${server.address().port}`);
});
Reference
이 문제에 관하여(Angular/React/Vue 빌드를 로컬에서 실행하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/balajipatnam/how-to-run-an-angularreactvue-build-locally-3gga텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)