mirror of
https://github.com/sigmasternchen/glitch-countdown
synced 2025-03-15 02:28:54 +00:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
![]() |
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './src/index.js',
|
||
|
output: {
|
||
|
filename: 'main.js',
|
||
|
path: path.resolve(__dirname, 'dist'),
|
||
|
},
|
||
|
};
|