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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
It is not clear how to compile it, the wiki has a page https://github.com/grrr-amsterdam/cookie-consent/wiki/Usage-with-build-tools but there are no commands for any of them.
Also for Babel there is already a config file and the various releases don't include any ready js/css file to embed it.
The text was updated successfully, but these errors were encountered:
I was able to compile it with rollup.
rollup.config.js:
import { nodeResolve } from '@rollup/plugin-node-resolve'; export default { input: 'index.mjs', output: { dir: 'dist', format: 'iife', name: 'CookieConsent' }, plugins: [nodeResolve()] };
Sorry, something went wrong.
Hi same issue here. I made it almost build with webpack 5 and babel with these settings,
{ test: /\.m?js$/, resolve: { fullySpecified: false, extensions: ['.wasm', '.mjs', '.js', '.jsx', '.json', '.scss', '.css'], }, use: { loader: 'babel-loader', options: { presets: ['@babel/preset-env'], }, }, }
harmenjanssen
No branches or pull requests
It is not clear how to compile it, the wiki has a page https://github.com/grrr-amsterdam/cookie-consent/wiki/Usage-with-build-tools but there are no commands for any of them.
Also for Babel there is already a config file and the various releases don't include any ready js/css file to embed it.
The text was updated successfully, but these errors were encountered: