1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00
apt/webpack.config.js

10 lines
210 B
JavaScript

const path = require('path');
module.exports = {
mode: 'production',
entry: './_scripts/app.js',
output: {
path: path.resolve(__dirname, 'assets'),
filename: 'scripts.js',
}
};