Configure Aurelia Project using Visual Studio

前端 未结 6 1910
梦谈多话
梦谈多话 2020-12-28 09:19

I know it\'s very new, but I\'d like to create a prototype using aurelia with Visual Studio. VS support is in the hopper, but the current documentation is based on node.js

6条回答
  •  情书的邮戳
    2020-12-28 10:09

    I tried to run Aurelia Visual Studio Project without Nodejs .

    https://github.com/cmichaelgraham/aurelia-typescript#just-use-it---visual-studio-using-requirejs-amd-module-loader enter image description here

    But it not able to find "http://lcoalhost:6260/aurelia/core-js/client/core.js".

    that means we need make sure that NodeJs installed on server with this command

    run node r.js -o name=aurelia-bundle-manifest baseUrl=. mainConfigFile=main-config.js out=aurelia-bundle.min.js

    Need to create bundling into server like

    https://github.com/cmichaelgraham/aurelia-typescript#bundling

提交回复
热议问题