Closed Nataila closed 7 years ago
我webpack之后的文件在 app/dist/static/build.js index.html 里面引入是用的 在django的settings里面设置了 STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'app/dist/static') ] INSTALLED_APP里面也加了 app
STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'app/dist/static') ]
app
但是运行的时候,仍然找不到build.js 是不是需要再index.html引入build.js的时候仍然需要使用{% static '' %}?
@Nataila 找不到的时候你在浏览器看它访问的路径是什么,然后改一下STATICFILES_DIRS,再看一下访问静态文件的路径,你就会理解了,希望对你有帮助。
STATICFILES_DIRS
我webpack之后的文件在 app/dist/static/build.js index.html 里面引入是用的
在django的settings里面设置了
STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'app/dist/static') ]
INSTALLED_APP里面也加了app
但是运行的时候,仍然找不到build.js 是不是需要再index.html引入build.js的时候仍然需要使用{% static '' %}?