mirror of
https://github.com/wassname/rl_2d_walker.js.git
synced 2026-08-27 12:20:27 +08:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './js/index.js',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'bundle.js'
|
|
}
|
|
};
|