Packages

Installer and new project generator for Aino

Current section

Files

Jump to
aino_new priv templates assets tailwind.config.js
Raw

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: [],
}