lovelace-state-switch/webpack.config.js
2019-12-10 20:34:00 +01:00

11 lines
184 B
JavaScript

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