Skip to content

Commit

Permalink
fix: expose app entrypoint in webpack dev config for example app
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstankiewicz committed Sep 10, 2024
1 parent 45e551e commit 6df74d6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webpack.dev.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ const path = require('path');
const { createConfig } = require('@openedx/frontend-build');

module.exports = createConfig('webpack-dev', {
entry: path.resolve(__dirname, 'example'),
entry: {
app: path.resolve(__dirname, 'example'),
},
output: {
path: path.resolve(__dirname, 'example/dist'),
publicPath: '/',
Expand Down

0 comments on commit 6df74d6

Please sign in to comment.