Compare commits

...

1 Commits

Author SHA1 Message Date
Adam Stankiewicz
6df74d63c0 fix: expose app entrypoint in webpack dev config for example app 2024-09-10 08:34:38 -04:00

View File

@@ -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: '/',