gpt4 book ai didi

当 DEBUG=False 时 django 管道会中断管理

转载 作者:行者123 更新时间:2023-12-01 23:49:40 25 4
gpt4 key购买 nike

这是CSS的设置

PIPELINE_CSS = {
'base': {
'source_filenames': (
'scss/core.scss',
),
'output_filename': 'css/min.css',
},
'ie8': {
'source_filenames': (
'css/ie-8-overrides.css',
),
'output_filename': 'css/ie8.css',
},
}

它以某种方式提示:

ValueError: The file 'admin/css/base.css' could not be found with <pipeline.storage.PipelineCachedStorage object at 0x10c34add0>.

最佳答案

发现了,STATICFILES_FINDERS没有内置的django,所以在收集静态文件时,它并没有从admin复制css和js。

STATICFILES_FINDERS = (
'pipeline.finders.FileSystemFinder',
'pipeline.finders.AppDirectoriesFinder',
'pipeline.finders.PipelineFinder',
'pipeline.finders.CachedFileFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder', # added this and worked
)

关于当 DEBUG=False 时 django 管道会中断管理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22575434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com