Built-in module bundler for developing Merchant Center customizations.
Supported features
Hot reloading
We support hot reloading in development mode with the Hot Module Replacement plugin and the React Fast-Refresh plugin.
With these plugins, the application is reloaded when any change in your code occurs.
Import images
.svg
, .png
.SVG
import ImageSvg from './image.svg';
const Component = () => <img alt="An image" src={ImageSvg} />;
.react.svg
.import Image from './image.react.svg';
const Component = () => <Image title="An image" />;
PNG
import ImagePng from './image.png';
const Component = () => <img alt="An image" src={ImagePng} />;
Import styles
.css
, .module.css
.Global styles
Global styles can be imported into any application file as follows:
import './style.css';
CSS Modules
import * as styles from './style.module.css';
const Component = () => <div className={styles.container}></div>;
.container {
width: 100%;
}
.css
files.CSS Pre-processors
By default, we support the following PostCSS plugins:
autoprefixer
: plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use.postcss-custom-media
: plugin to enable Custom Media Queries in CSS, following the CSS Media Queries specification.postcss-custom-properties
: plugin to enable Custom Properties in CSS, following the CSS Custom Properties specification.postcss-import
: plugin to transform@import
rules by inlining content.
JavaScript
.js
, .mjs
, .cjs
, .jsx
, .ts
, .tsx
.@commercetools-frontend/babel-preset-mc-app
.GraphQL
.graphql
.Custom Webpack config
At times your application might require some extra functionality. For example, loading a particular file extension, using a specific Webpack plugin, or including other source files in your repository.
To extend the functionalities of Webpack, you can define specific files in the root of your customization project for both development and production.
Development
webpack.config.dev.{js,cjs}
file and use the function createWebpackConfigForDevelopment
to create and enhance the Webpack configuration.The customization CLI will then use the configuration exported from this file instead of the default one.
const {
createWebpackConfigForDevelopment,
} = require('@commercetools-frontend/mc-scripts/webpack');
// Create the default config
const config = createWebpackConfigForDevelopment();
// Customize the config
config.module.rules = config.module.rules.concat({
test: /\.scss$/,
use: [
require.resolve('style-loader'),
require.resolve('css-loader'),
require.resolve('sass-loader'),
],
});
// Export the config
module.exports = config;
Production
webpack.config.prod.{js,cjs}
file and use the function createWebpackConfigForProduction
to create and enhance the Webpack configuration.The customization CLI will then use the configuration exported from this file instead of the default one.
const {
createWebpackConfigForProduction,
} = require('@commercetools-frontend/mc-scripts/webpack');
// Create the default config
const config = createWebpackConfigForProduction();
// Customize the config
config.module.rules = config.module.rules.concat({
test: /\.scss$/,
use: [
require.resolve('style-loader'),
require.resolve('css-loader'),
require.resolve('sass-loader'),
],
});
// Export the config
module.exports = config;
Options
Use custom source folders
sourceFolders
option../src
folder.sourceFolders
option will override the default value.const path = require('path');
const sourceFolders = [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, '../shared'),
];
const config = createWebpackConfigForDevelopment({ sourceFolders });
module.exports = config;