Skip to content

Instantly share code, notes, and snippets.

@kuanyui
Last active February 9, 2021 07:16
Show Gist options
  • Save kuanyui/a0d246ce701d577c1082b986dec7bfea to your computer and use it in GitHub Desktop.
Save kuanyui/a0d246ce701d577c1082b986dec7bfea to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Full-Width in Webpack
// @version 0.1
// @grant none
// @match https://webpack.js.org/*
// @run-at document-end
// @grant none
// ==/UserScript==
const el = document.createElement('style')
el.innerText =`
.container { max-width: unset; }
`
document.body.appendChild(el)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment