summaryrefslogtreecommitdiffstats
path: root/webpack.config.js
blob: 458d70d2fa4dcba4fec36d403ef7eca07139ac04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const path = require('path')
const webpackConfig = require('@nextcloud/webpack-vue-config')
const webpackRules = require('@nextcloud/webpack-vue-config/rules')

webpackConfig.entry['files-action'] = path.join(__dirname, 'src', 'files-action.js')
webpackConfig.entry['admin-settings'] = path.join(__dirname, 'src', 'admin-settings.js')

// Include mdi icons as raw svg strings
webpackRules.RULE_SVG = {
	resourceQuery: /raw/,
	type: 'asset/source',
}
webpackConfig.module.rules = Object.values(webpackRules)

webpackConfig.module.rules.push({
	  test: /\.tsx?$/,
	  use: 'ts-loader',
	  exclude: /node_modules/,
})

webpackConfig.resolve.extensions = ['.js', '.vue', '.ts', '.tsx']

webpackConfig.resolve.fallback = { fs: false }

webpackConfig.resolve.alias = {
	vue$: 'vue/dist/vue.esm.js',
}

module.exports = webpackConfig