lovelace-slider-entity-row/webpack.config.js
2019-11-09 20:25:31 +01:00

11 lines
189 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/main.js',
mode: 'production',
output: {
filename: 'slider-entity-row.js',
path: path.resolve(__dirname)
}
};