Answers for "rails 6 TypeError: $(...).tooltip is not a function"

0

rails 6 TypeError: $(...).tooltip is not a function

const { environment } = require('@rails/webpacker');
const customConfig = require('./custom');
const webpack = require('webpack');

environment.plugins.append(
  'Provide',
  new webpack.ProvidePlugin({
    $: 'jquery/src/jquery',
    jQuery: 'jquery/src/jquery',
    Popper: ['popper.js', 'default']
  })
);
environment.config.merge(customConfig);

module.exports = environment;
Posted by: Guest on September-02-2020

Code answers related to "rails 6 TypeError: $(...).tooltip is not a function"

Browse Popular Code Answers by Language