Skip to content

Commit

Permalink
Merge pull request #63 from Harsh4999/patch-1
Browse files Browse the repository at this point in the history
Added a missing semi colon in config file
  • Loading branch information
AlenVelocity authored Jan 17, 2022
2 parents e40ddaf + a97be0b commit 5018f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const { join } = require('path')

/** @type {import('aureolin').Config} */
module.exports = {
root: join(process.cwd(), process.env.NODE_ENV === 'production' ? 'dist' : 'src')
root: join(process.cwd(), process.env.NODE_ENV === 'production' ? 'dist' : 'src'),
port: 4000,
public: {
path: '/public',
Expand Down

0 comments on commit 5018f8d

Please sign in to comment.