Add missing modules entry to webpack config.

This commit is contained in:
Martin Marosi 2021-07-15 14:20:07 +02:00 committed by Sanne Raymaekers
parent 98c7758781
commit 0513ac9ac4
2 changed files with 3 additions and 2 deletions

View file

@ -7,8 +7,8 @@ const { config: webpackConfig, plugins } = config({
debug: true,
port: 8002,
useFileHash: false,
sassPrefix: '.image-builder, body',
skipChrome2: true,
modules: [ 'image_builder' ],
sassPrefix: '.image-builder, body'
});
plugins.push(

View file

@ -5,6 +5,7 @@ const config = require('@redhat-cloud-services/frontend-components-config');
const { config: webpackConfig, plugins } = config({
rootFolder: resolve(__dirname, '../'),
skipChrome2: false,
modules: [ 'image_builder' ],
sassPrefix: '.image-builder, body',
});