tenweb-speed-optimizer
Last commit date
assets
11 months ago
config
2 years ago
exported
4 years ago
includes
2 months ago
test
4 years ago
vendor
1 month ago
views
11 months ago
.editorconfig
3 years ago
OptimizerAdmin.php
1 year ago
OptimizerAdminBar.php
2 years ago
OptimizerApi.php
1 month ago
OptimizerCli.php
1 year ago
OptimizerDataRepository.php
1 year ago
changelog.txt
3 years ago
config.php
1 month ago
env.php
1 month ago
phpcs.xml
3 years ago
readme.txt
1 month ago
tenweb_speed_optimizer.php
1 month 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 | } |