Quantcast
Channel: JavaScriptMVC Forum
Viewing all articles
Browse latest Browse all 3491

Re : config of new steal

$
0
0
You seem to have a few issues going on here. First things first, you can't use both steal and es6 in the same file. Perhaps you did this because myapp/core/init.js is written in steal so you thought you needed to "steal" it in main.js? That's not actually the case, you can mix and match syntaxes in the same project, but not the same file.  So fix your main.js to do:

  1. import $ from 'jquery';
  2. import init from ' myapp/core/init';


And then let me know what happens next.

Viewing all articles
Browse latest Browse all 3491

Trending Articles