Drupal 10 - 全局样式库无法正常工作

问题描述 投票:0回答:1

我正在尝试为 Drupal 10 创建一个入门主题,我的主题基于 Drupal 10 starterkit,并且我想为我的项目的所有页面添加顺风。所以我创建了一个非常简单的顺风配置。我遵循了所有 Drupal 10 步骤,但我不知道为什么我的网站绝对无法访问我的 dist/index.css 文件。

custom_theme.info.yml
name: custom_theme
type: theme
'base theme': stable9
starterkit: true
version: VERSION
libraries:
  - custom_theme/global-styling
  - custom_theme/base
  - custom_theme/messages
  - core/normalize
libraries-extend:
  user/drupal.user:
    - custom_theme/user
  core/drupal.dropbutton:
    - custom_theme/dropbutton
  core/drupal.dialog:
    - custom_theme/dialog
  file/drupal.file:
    - custom_theme/file
  core/drupal.progress:
    - custom_theme/progress
core_version_requirement: ^10
generator: 'starterkit_theme:10.1.7'
custom_theme.libraries.yml
global-styling:
  version: VERSION
  css:
    theme:
      dist/index.css: {}
# ...

我的 Drupal 网站上没有特殊配置,是新鲜的 Drupal 10.1.7,但我必须精确地说明我的主题是安装配置文件的一部分,也许它有一个我不知道的重要性......

感谢您的帮助!

我尝试从头开始重新创建主题,重命名我的主题,并多次刷新缓存...

drupal configuration yaml frontend tailwind-css
1个回答
0
投票

你把index.css放到dist文件夹了吗?

© www.soinside.com 2019 - 2024. All rights reserved.