Current section
Files
Jump to
Current section
Files
priv/templates/assets/tailwind.config.js
let mode = undefined;
if (process.env.WATCH == "true") {
mode = "jit";
}
module.exports = {
mode,
purge: [
'../lib/<%= @app %>/web/templates/**/*.html.eex'
],
darkMode: false,
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}