We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm thinking about that I use recoil on my project..
But we have to support IE 11, but my configuration is not working in IE 11.
This is error message on IE 11. -- "Error was not caught SyntaxError"
So here is the below code.
// .babelrc { "presets": ["next/babel"], "plugins": ["emotion"] }
// next.config.js const withPlugins = require('next-compose-plugins'); const withImages = require('next-images'); const withTM = require('next-transpile-modules')(['recoil'], { debug: true }); const nextConfig = { webpack: (config, options) => { return config; }, publicRuntimeConfig: { ...environmentConfig } } const plugins = [ withTM(nextConfig), [ withImages() ] ]; module.exports = withPlugins([...plugins]);
Could you help me?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm thinking about that I use recoil on my project..
But we have to support IE 11, but my configuration is not working in IE 11.
This is error message on IE 11. -- "Error was not caught SyntaxError"
So here is the below code.
Could you help me?
The text was updated successfully, but these errors were encountered: