mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-09 00:55:34 +00:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './src/main.js',
|
|
mode: 'production',
|
|
output: {
|
|
filename: 'card-tools.js',
|
|
path: path.resolve(__dirname)
|
|
}
|
|
};
|