mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 03:13:02 +00:00
Fix static file dir warning (#350)
This commit is contained in:
parent
7148bc62c3
commit
53be77aade
3 changed files with 7 additions and 5 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -182,7 +182,9 @@ typings/
|
||||||
|
|
||||||
### Custom
|
### Custom
|
||||||
# Rollup compilation output
|
# Rollup compilation output
|
||||||
/build
|
/bookmarks/static/bundle.js*
|
||||||
|
# SASS compilation output
|
||||||
|
/bookmarks/static/theme-*.css*
|
||||||
# Collected static files for deployment
|
# Collected static files for deployment
|
||||||
/static
|
/static
|
||||||
# Build output, etc.
|
# Build output, etc.
|
||||||
|
|
|
@ -11,7 +11,8 @@ export default {
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
format: 'iife',
|
format: 'iife',
|
||||||
name: 'linkding',
|
name: 'linkding',
|
||||||
file: 'build/bundle.js'
|
// Generate bundle in static folder to that it is picked up by Django static files finder
|
||||||
|
file: 'bookmarks/static/bundle.js'
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
svelte({
|
svelte({
|
||||||
|
|
|
@ -138,7 +138,7 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
||||||
# Turn off SASS compilation by default
|
# Turn off SASS compilation by default
|
||||||
SASS_PROCESSOR_ENABLED = False
|
SASS_PROCESSOR_ENABLED = False
|
||||||
# Location where generated CSS files are saved
|
# Location where generated CSS files are saved
|
||||||
SASS_PROCESSOR_ROOT = os.path.join(BASE_DIR, 'tmp', 'build', 'styles')
|
SASS_PROCESSOR_ROOT = os.path.join(BASE_DIR, 'bookmarks', 'static')
|
||||||
|
|
||||||
# Add SASS preprocessor finder to resolve generated CSS
|
# Add SASS preprocessor finder to resolve generated CSS
|
||||||
STATICFILES_FINDERS = [
|
STATICFILES_FINDERS = [
|
||||||
|
@ -147,9 +147,8 @@ STATICFILES_FINDERS = [
|
||||||
'sass_processor.finders.CssFinder',
|
'sass_processor.finders.CssFinder',
|
||||||
]
|
]
|
||||||
|
|
||||||
# Include SASS styles into static path, otherwise they can not be found by the SASS preprocessor
|
# Enable SASS processor to find custom folder for SCSS sources through static file finders
|
||||||
STATICFILES_DIRS = [
|
STATICFILES_DIRS = [
|
||||||
os.path.join(BASE_DIR, 'build'),
|
|
||||||
os.path.join(BASE_DIR, 'bookmarks', 'styles'),
|
os.path.join(BASE_DIR, 'bookmarks', 'styles'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue