tenweb-speed-optimizer
Last commit date
assets
1 year ago
config
2 years ago
exported
4 years ago
includes
1 week ago
test
4 years ago
vendor
1 week ago
views
2 weeks ago
.editorconfig
3 years ago
OptimizerAdmin.php
1 year ago
OptimizerAdminBar.php
2 weeks ago
OptimizerApi.php
2 weeks ago
OptimizerCli.php
1 year ago
OptimizerDataRepository.php
1 year ago
changelog.txt
3 years ago
config.php
1 week ago
env.php
3 months ago
phpcs.xml
3 years ago
readme.txt
1 week ago
tenweb_speed_optimizer.php
1 week ago
webpack.config.js
3 years ago
webpack.config.js
13 lines
| 1 | const defaultConfig = require("@wordpress/scripts/config/webpack.config"); |
| 2 | const path = require('path'); |
| 3 | |
| 4 | module.exports = { |
| 5 | ...defaultConfig, |
| 6 | entry: { |
| 7 | 'block-tenwebspeedoptimizer-sidebarpluginblock': './assets/js/sidebar-plugin.js' |
| 8 | }, |
| 9 | output: { |
| 10 | path: path.join(__dirname, './assets/js/gutenberg'), |
| 11 | filename: 'sidebar-plugin-compiled.js' |
| 12 | }, |
| 13 | } |