1.0.4 • Published 1 year ago
rollup-plugin-wordpress-dependency-extraction v1.0.4
rollup-plugin-wordpress-dependency-extraction
Installation
Install the plugin
bun install rollup-plugin-wordpress-dependency-extraction --save-dev
Vite
export default defineConfig(({ mode }) => {
return {
plugins: [
react(),
wpDependencyExtraction(),
],
build: {
manifest: true,
rollupOptions: {
output: {
format: 'iife',
},
},
},
esbuild: {
minifyIdentifiers: false,
},
}
})