We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It can't work with Vuex due to process being undefined when createStore is called
It was looking for process.env.NODE_ENV
The workaround was to include the following in the index.html file where createStore was called...
window.process = { env: { NODE_ENV: 'you can put whatever you want here' } }
Also submitted an issue in Vuex for their attention...
vuejs/vuex#1737
The text was updated successfully, but these errors were encountered:
It is being fixed in vuejs/vuex#1730
Sorry, something went wrong.
fix: reslove alias assets
52b5526
fix #21, fix #20
No branches or pull requests
It can't work with Vuex due to process being undefined when createStore is called
It was looking for process.env.NODE_ENV
The workaround was to include the following in the index.html file where createStore was called...
window.process = { env: { NODE_ENV: 'you can put whatever you want here' } }
Also submitted an issue in Vuex for their attention...
vuejs/vuex#1737
The text was updated successfully, but these errors were encountered: