mirror of
https://github.com/WordPress/create-block-theme.git
synced 2025-08-17 14:51:20 +08:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
module.exports = ( api ) => {
|
|
api.cache( true );
|
|
|
|
return {
|
|
presets: [ '@wordpress/babel-preset-default' ],
|
|
plugins: [ '@emotion/babel-plugin', 'babel-plugin-inline-json-import' ],
|
|
};
|
|
};
|