-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
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
Support configuring Vue apps with vue.config.js
#160
Comments
Thanks for creating this issue. I explain my current position on adding At this time, we want to wait for more user feedback about this before deciding on a direction. For the example of |
vue.config.js
Is vue.config.js support still on the roadmap? |
Nice work on the migration to NX 13, I'd like to take a crack at adding the |
I'd like to +1 the
If there's an alternative way to achieve this in the current functionality, I'd love to know of it. Otherwise, while I understand that having both |
Yeah, I've spent a ton of hours trying to get |
Where should plugin specific code go?
It also had devServer which I have successfully moved to project.json. It also has a publicPath defined like this.
I see that I can have publicPath: "/" defined in the serve.options and then in the serve.configurations.production, I can put publicPath: "/sc/". I also had two sections for webpack, which I assume I have to figure out how to migrate these into configure-webpack.js:
Any suggestions would be much apprecited. This is all Vue 2 as I wait for Vuetify to become fully available for Vue 3. |
Oops, I just noticed that there is explicit support for the transpileDependencies already. |
I thought I had figured out how to get the rest of the vue.config.js configuration to work since Vue allows you to put vue.config.js elements in the package.json file under the "vue" node.
So I would say that at least one more thing is required to be supported in the workspace.json file. We need support for pluginOptions. |
Description
When installing vue cli plugins, they sometimes need to be configured via vue.config.js (ex @vue/cli-plugin-pwa)
This configuration is not possible right now.
Motivation
The configuration of these plugins should be possible.
Suggested Implementation
add a vue.config.js to the application and allow configuration there. This configuration should get merged in with the standard config.
The text was updated successfully, but these errors were encountered: