Skip to content

Commit

Permalink
fix: use module.exports for config file
Browse files Browse the repository at this point in the history
  • Loading branch information
dmi3y committed Mar 8, 2024
1 parent 36ad2bd commit d309cb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion remix.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,5 @@ function selectConfig() {
throw new Error(`Cannot select config`);
}

export default selectConfig();
// export default selectConfig();
module.exports = selectConfig();

0 comments on commit d309cb0

Please sign in to comment.