Pergunta

When using usemin, the output directory for cssmin and uglifyjs is by default set to dist/assets/.

I want to offer a different directory to place my new files in, ie: assets/.

I can't seem to figure out, how to change these settings in my gruntfile using usemin.

Foi útil?

Solução

Change the dest in options like so:

    useminPrepare: {
        html: 'app/index.html',
        options: {
            dest: './'
        }
    },
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top