0
votes

When I run the sencha command like so:

sencha app build production

I get an error which points to the following line in app.scss:

@import 'sencha-touch/default/all';

In my app I have the following folder:

\App\touch\resources\themes\stylesheets\sencha-touch\default

But there is no 'all' folder. Is my application structure broken or is there something else I am missing?

1

1 Answers

0
votes

The error might be generated because there's no _all.scss inside

touch\resources\themes\stylesheets\sencha-touch\default

Contents of _all.scss are

@import 'core';
@import 'widgets';

Check application structure again or just create _all.scss manually and see if it solves problem.