Skip to content

Commit

Permalink
fix: update absolute build path to build instead of dist folder
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieSlome committed Feb 13, 2024
1 parent d1d76af commit f8f6a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const start = async () => {
// Before we can bind the routes - we need the passport strategy
const passport = await require('./passport').configure();
const routes = require('./routes');
const absBuildPath = path.join(__dirname, '../../dist');
const absBuildPath = path.join(__dirname, '../../build');
app.use(cors(corsOptions));
app.set('trust proxy', 1);
app.use(
Expand Down

0 comments on commit f8f6a72

Please sign in to comment.