Closed csKangGdcomm closed 6 years ago
The same issue in development mode for IE11. Still when building with circleCI I managed somehow avoid this in staging, but when trying to deploy locally - getting the same error. That is why, I think here some build issue, and should exist more elegant solution than adding the polyfill.
So basically we can see it here https://github.com/nathantreid/meteor-css-modules/commit/5f725828ac6707dc7b55ee478696de5fd093381a#diff-8ba28762823f7ae358cd86b415271a6eR246
TEMP SOLUTION: So I was able to solve my issue with adding to package.json
"cssModules": {
"missingClassErrorLevel": false,
...
}
NOT WORKING:
I can't find more elegant solution
NODE_ENV=production meteor run --settings development-settings.json
and
meteor run --settings development-settings.json --production
Are not working. Strange.
@csKangGdcomm FYI
I solve this problem. you can check Meteor Forum The main problem is that Meteor should provide elegant way to include some code or library when user build their project or develop their project. Anyway I hope I can help you @egemon if you faced this problem Thank you! I will closed this issue.
I noticed the issue where running in --production
mode still produces the Proxy. I believe it is a caching bug in my code as after a meteor reset
, running in --production
mode did not produce the Proxy.
Hi,
Thanx for the awesome project!
I have a problem related to the Proxy object.
I am using your project and scss together and.
When i tried to load my project on android device is 4.2.2 android version, pretty old,
there is an error after build success.
meteor run android-device
the message is below
android:http://localhost:12104/app/app.js:1664) Uncaught ReferenceError: Proxy is not defined
I tried to add proxy-polyfill ( https://github.com/GoogleChrome/proxy-polyfill )
but I am not sure I added the polyfill well
Anyway it faills, It shows the error still now.
Can you give me some advice? Thank you!