Merge branch 'master' into storefront-nuxt
This commit is contained in:
commit
0194d152fe
4 changed files with 3 additions and 4 deletions
|
|
@ -392,8 +392,7 @@ class AddressType(DjangoObjectType):
|
||||||
"postal_code",
|
"postal_code",
|
||||||
"country",
|
"country",
|
||||||
"raw_data",
|
"raw_data",
|
||||||
"address_line_1",
|
"address_line",
|
||||||
"address_line_2",
|
|
||||||
"api_response",
|
"api_response",
|
||||||
"user",
|
"user",
|
||||||
)
|
)
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -112,7 +112,7 @@
|
||||||
createParticleField();
|
createParticleField();
|
||||||
|
|
||||||
fontLoader = new THREE.FontLoader();
|
fontLoader = new THREE.FontLoader();
|
||||||
fontLoader.load('/static/Source%20Code%20Pro%20ExtraLight_Regular.json', f => {
|
fontLoader.load('https://wiseless.xyz/fonts/source-code-pro/source_code_pro.json', f => {
|
||||||
loadedFont = f;
|
loadedFont = f;
|
||||||
create3DText();
|
create3DText();
|
||||||
fitCameraToText();
|
fitCameraToText();
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ CSP_CONNECT_SRC = (
|
||||||
CSP_FONT_SRC = (
|
CSP_FONT_SRC = (
|
||||||
"'self'",
|
"'self'",
|
||||||
"https://fonts.gstatic.com",
|
"https://fonts.gstatic.com",
|
||||||
|
"https://wiseless.xyz",
|
||||||
)
|
)
|
||||||
|
|
||||||
CSP_OBJECT_SRC = ("'none'",)
|
CSP_OBJECT_SRC = ("'none'",)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue