Server IP : 184.154.167.98 / Your IP : 18.117.231.160 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/tampico1900/apps/viewer/ |
Upload File : |
/* eslint-disable node/no-extraneous-import */ /* eslint-disable node/no-unpublished-import */ import fs from 'fs' import path from 'path' import webpack from 'webpack' import webpackConfig from '@nextcloud/webpack-vue-config' import webpackRules from '@nextcloud/webpack-vue-config/rules' import BabelLoaderExcludeNodeModulesExcept from 'babel-loader-exclude-node-modules-except' const isTesting = !!process.env.TESTING const plyrIcons = fs.readFileSync(path.join('node_modules', 'plyr', 'dist', 'plyr.svg'), { encoding: 'utf8' }) if (isTesting) { console.debug('TESTING MODE ENABLED') } // vue-plyr uses .mjs file webpackRules.RULE_JS.test = /\.m?js$/ webpackRules.RULE_JS.exclude = BabelLoaderExcludeNodeModulesExcept([ '@nextcloud/dialogs', '@nextcloud/event-bus', 'camelcase', 'fast-xml-parser', 'hot-patcher', 'semver', 'vue-plyr', 'webdav', 'toastify-js', ]) webpackRules.RULE_TS = { test: /\.ts$/, use: [{ loader: 'ts-loader', options: { // skip typechecking for speed transpileOnly: true, }, }], } // Replaces rules array webpackConfig.module.rules = Object.values(webpackRules) // Add custom plugins webpackConfig.plugins.push(...[ new webpack.DefinePlugin({ isTesting, PLYR_ICONS: JSON.stringify(plyrIcons), }), ]) // Add proper typescript support webpackConfig.resolve.extensions = ['.ts', '.tsx', '.js', '.jsx', '.cjs', '.vue'] export default webpackConfig