Add DEBUG=False to your .env file
docker-compose down
make clean
docker-compose pull
docker-compose up -d
docker-compose exec -T web make localecompile webpack compilejsi18n compile-react-i18n
docker-compose exec -T web ./manage.py collectstatic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function setupConfig() { | |
// assume production as origin | |
var origin = "https://developer.mozilla.org"; | |
// get the actual parent origin | |
var parentOrigin = window.parent.location.origin; | |
// is it the beta domain? | |
if (parentOrigin.search(/beta.developer.(mozilla|allizom)/) > -1) { | |
// then use it as the origin | |
origin = parentOrigin; | |
} else if (window.URL) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
United States | |
United Kingdom | |
Afghanistan | |
Albania | |
Algeria | |
American Samoa | |
Andorra | |
Angola | |
Anguilla | |
Antigua and Barbuda |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Original: https://github.com/TheLarkInn/webpack-workshop-2018/blob/feature/build-utils/build-utils/loadPresets.js | |
/** | |
* Usage: | |
* Use via NPM script | |
* Passing a single preset: | |
* "prod:compress": "npm run prod -- --env.presets compress", | |
* "prod:analyze": "npm run prod -- --env.presets analyze", | |
* Passing a multiple preset as a , separate list: | |
* "prod:compress-analyze": "npm run prod -- --env.presets compress,analyze", | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = () => ({ | |
output: { | |
filename: "[chunkhash].js" | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
function add(num1, num2) { | |
return num1 + num2; | |
} | |
})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const imagemin = require('imagemin'); | |
const imageminJpegTran = require('imagemin-jpegtran'); | |
const imageminPngQuant = require('imagemin-pngquant'); | |
async function optim() { | |
const files = await imagemin( | |
['./live-examples/media/**/*.{jpg,png}'], | |
'./build/images', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.local-anchor .icon { | |
color: #3d7e9a; | |
width: 16px; | |
height: 16px; | |
/* ensure svg will never be the target of mouse event */ | |
pointer-events: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mainDocument = document.getElementById('document-main'); | |
mainDocument.addEventListener('click', function(event) { | |
var target = event.target; | |
// only handle clicks on anchor elements | |
if (target.tagName === 'A') { | |
// do stuff | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a class="local-anchor" href="https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow#Specifications"> | |
<svg class="icon icon-link" version="1.1" width="24" height="28" viewBox="0 0 512 512" aria-hidden="true" focusable="false"> | |
<path d="M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 |