Files
quicknotes/webpack.config.js
Matias De lellis b6db15d8d2 Add dashboard widget to show the latest notes. Issue #51
p.s: I would like to be able to select a particular tag to show, but
none of the dashboard widgets are configurable.

I hate increasing the app size from 300k to almost 3 mb for something
so simple, but we must adapt to the majority and use vue here.
2022-05-25 10:29:20 -03:00

9 lines
222 B
JavaScript

const path = require('path')
const webpackConfig = require('@nextcloud/webpack-vue-config')
webpackConfig.entry = {
dashboard: { import: path.join(__dirname, 'src', 'dashboard.js') }
}
module.exports = webpackConfig