Skip to content

Commit

Permalink
fix: configure webpack to fix paid powerpaste plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Clary committed Jan 9, 2024
1 parent bee3758 commit e513ebe
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions webpack.prod.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const path = require('path');

Check failure on line 1 in webpack.prod.config.js

View workflow job for this annotation

GitHub Actions / tests

'path' is assigned a value but never used
const { createConfig } = require('@edx/frontend-build');

const config = createConfig('webpack-prod', {
resolve: {
fallback: {
fs: false,
constants: false,
},
},
});

module.exports = config;

0 comments on commit e513ebe

Please sign in to comment.