mirror of
https://github.com/QWRK-ORG/qwrk-laconic-core.git
synced 2026-03-04 16:04:07 +00:00
* chore(routes): LAC-116_Create-Layout-Components * fix(ui): tailwind config not resolving * chore(ux): basic navigation functions * Landings stubbed
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
// '@tailwindcss/postcss': {}
|
|
tailwindcss: {},
|
|
autoprefixer: {}
|
|
}
|
|
}
|
|
|
|
export default config
|