Webpack Encore - $ is not defined

前端 未结 2 1867
轮回少年
轮回少年 2021-02-09 13:12

I followed the documentation to make Webpack Encore work in my project. Imported js files in webpack.config.js work fine but I have an issue in page-specific js : $ is not

2条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-09 14:09

    Got it working by following the documentation : https://symfony.com/doc/current/frontend/encore/legacy-apps.html

    I had to write this in app.js :

    // require jQuery normally
    const $ = require('jquery');
    
    // create global $ and jQuery variables
    global.$ = global.jQuery = $;
    

    And I removed this from webpack.conig.js since it's equivalent to .autoProvidejQuery :

    .addPlugin(new webpack.ProvidePlugin({
        $: 'jquery',
        jQuery: 'jquery',
        'window.jQuery': 'jquery',
    }))
    

    Thank you for your help !

提交回复
热议问题