@klaxit/cookie-consent
Version:
A simple dialog to handle cookie consent and comply with data privacy laws. Fully compliant with European GDPR & California CCPA.
18 lines (14 loc) • 426 B
JavaScript
const path = require( "path" )
const common = require( "./webpack.config.js" )
const HtmlWebpackPlugin = require("html-webpack-plugin")
module.exports = Object.assign({}, common, {
mode: "development",
plugins: [new HtmlWebpackPlugin({
hash: true,
template: path.resolve(__dirname, "examples", "index.ejs"),
scriptLoading: "blocking",
inject: false
})
],
})