PluginProbe
FV Player 8 / 8.1
FV Player 8 v8.1
trunk 8.0.18 8.0.19 8.0.20 8.0.21 8.0.25 8.0.27 8.1 8.1.3
fv-player / webpack.config.js

webpack.config.js in FV Player 8 8.1, at webpack.config.js

20 lines 386 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * External Dependencies
3 */
4 const path = require( 'path' );
5
6 /**
7 * WordPress Dependencies
8 */
9 const defaultConfig = require( '@wordpress/scripts/config/webpack.config.js' );
10
11 module.exports = {
12 ...defaultConfig,
13 entry: {
14 index: path.resolve( __dirname, 'blocks', 'index.js' ),
15 },
16 output: {
17 path: path.resolve( __dirname, 'blocks/build' ),
18 },
19 }
20