BREAKING CHANGE: The footer is now transpiled from es6 preserving modules. To use this package in a project it must now be transpiled by the requiring project via webpack or other configuration
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
const path = require('path');
|
|
const { createConfig } = require('@edx/frontend-build');
|
|
|
|
module.exports = createConfig('webpack-dev', {
|
|
entry: path.resolve(__dirname, 'example'),
|
|
output: {
|
|
path: path.resolve(__dirname, 'example/dist'),
|
|
publicPath: '/',
|
|
},
|
|
});
|