mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: './assets/js/app.js',
|
|
output: {
|
|
path: path.resolve(__dirname, 'assets'),
|
|
filename: 'scripts.js',
|
|
}
|
|
};
|