使用具有以下选项的aurelia-cli生成新项目:
Name: test-project
Platform: Web
Bundler: Aurelia-CLI
Loader: SystemJS
Transpiler: Babel
Markup Processor: Minimal Minification
CSS Processor: None
Unit Test Runner: None
Integration Test Runner: None
Editor: None
产生此文件结构:
test-project
...
...
src
resources
app.js
app.html
main.js
...
index.html
favicon.ico
...
我想知道您应该在哪里放置图像和CSS文件?目前,我有以下内容:
test-project
...
...
images
img-1.png
img-2.png
...
src
resources
app.js
app.html
app.css
main.js
...
index.html
favicon.ico
...