Open robinheidrich opened 2 years ago
same problem
after doing an npm update on my project laravel 9.11 and laravel mix 6.0.43 the same warning...
Same issue here! More info:
└─┬ laravel-mix@6.0.43
└─┬ node-libs-browser@2.2.1
└─┬ url@0.11.0
└── querystring@0.2.0
npm WARN deprecated querystring@0.2.0: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
Same problem. Only works on mac, windows clients not working when you use multiple query strings from a useForm
object from inertiajs, and then execute frmFilter.get( route('route.name') )
, no errors, no warnings. Any idea?
Issue is still active.
Just found a solution for me:
querystring-es3
packagenpm install querystring-es3
webpack.min.js
)
mix.webpackConfig({
"resolve": {
"fallback": { "querystring": require.resolve("querystring-es3")}
}
})
node -v
): 17.8.0npm -v
): 8.5.5Description:
When installing Laravel Mix, the following message appears (due to the use of node-libs-browser, which is also deprecated):
npm WARN deprecated querystring@0.2.0: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
Steps To Reproduce:
npm install laravel-mix