flask 和 tailwind - 渲染时不使用 master.css 中的更改

flask and tailwind - changes in master.css are not used when rendered

我想更改我的配色方案,因此在 tailwindconfig 文件中为 tailwind 添加了自定义颜色,但是尽管在构建 css 之后可以在 master.css 中找到它们,但 flask 开发服务器不使用新颜色,而是使用旧颜色。 我查看了我是否连接了错误的样式表,但实际上我连接了正确的样式表。

非常感谢您的帮助。已经谢谢你了!

tailwind.config.js

    purge: [],
    theme: {
        extend: {
            fontFamily: {
                "mont": "montserrat"
            },
            colors: {
                "primary": "#595b83",
                "secondary": "#f4abc4",
                "third": "#f4abc4",
                "fourth": "#060930"
            }
        },
    },
    variants: {},
    plugins: [],
} 

可能是您的浏览器使用了缓存,您需要在刷新页面前清除缓存。 如果您使用的是GoogleChrome,请按ctrl+shift+delete组合键进入清除缓存页面。