mirror of
https://gh.wpcy.net/https://github.com/WordPress/create-block-theme.git
synced 2026-04-24 11:58:30 +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' ],
|
|
};
|
|
};
|