You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
const path = require("path");
|
|
const resolve = (p) => {
|
|
return path.resolve(__dirname, p);
|
|
};
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./**/*.vue"].map(resolve),
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
}; |