Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix node polyfilling #2

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/reference.js
Original file line number Diff line number Diff line change
@@ -19,8 +19,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

// with nc/vue 7.8.0, if we remove this, we get "Uncaught TypeError: inspect is undefined"
// import {} from '@nextcloud/vue-richtext'
import { registerWidget } from '@nextcloud/vue/dist/Components/NcRichText.js'

__webpack_nonce__ = btoa(OC.requestToken) // eslint-disable-line
6 changes: 6 additions & 0 deletions webpack.js
Original file line number Diff line number Diff line change
@@ -2,6 +2,8 @@ const path = require('path')
const webpackConfig = require('@nextcloud/webpack-vue-config')
const ESLintPlugin = require('eslint-webpack-plugin')
const StyleLintPlugin = require('stylelint-webpack-plugin')
// eslint-disable-next-line n/no-extraneous-require
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')

const buildMode = process.env.NODE_ENV
const isDev = buildMode === 'development'
@@ -33,5 +35,9 @@ webpackConfig.plugins.push(
failOnError: !isDev,
}),
)
// [1] is NodePolyfillPlugin
webpackConfig.plugins[1] = new NodePolyfillPlugin({
excludeAliases: ['console'],
})

module.exports = webpackConfig