You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.
I have the following project organization for an angular application:
app
-- scripts
-- styles
-- views
-- index.html
I sucessfully output two concatenated and uglyfied script file in my dist folder.
What I need now is to also generate a copy of index.html, named index-debug.html that references the concatenated but not uglified script files to be able to debug the javascript code in production.
I think that I should use multple flows and targets to succeed.
But I don't know how to define multiple flows in useminPrepare and then use them with multiple targets in usemin.
The text was updated successfully, but these errors were encountered:
Hi,
I have the following project organization for an angular application:
app
-- scripts
-- styles
-- views
-- index.html
I sucessfully output two concatenated and uglyfied script file in my dist folder.
What I need now is to also generate a copy of index.html, named index-debug.html that references the concatenated but not uglified script files to be able to debug the javascript code in production.
I want to obtain:
dist
-- scripts
-- scripts-debug
-- styles
-- views
-- index-debug.html
I think that I should use multple flows and targets to succeed.
But I don't know how to define multiple flows in useminPrepare and then use them with multiple targets in usemin.
The text was updated successfully, but these errors were encountered: