Install the plugin
bun install rollup-plugin-wordpress-dependency-extraction --save-dev
export default defineConfig(({ mode }) => {
return {
plugins: [
react(),
wpDependencyExtraction(),
],
build: {
manifest: true,
rollupOptions: {
output: {
format: 'iife',
},
},
},
esbuild: {
minifyIdentifiers: false,
},
}
})