mirror of
https://github.com/AirenSoft/OvenPlayer.git
synced 2025-03-14 10:15:51 +00:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
const config = require('./webpack.config.js')
|
|
const path = require('path');
|
|
|
|
console.log(config)
|
|
|
|
config.mode = 'development';
|
|
config.output.path = path.resolve(__dirname, 'dev');
|
|
|
|
module.exports = config; |