* Add eslint for linting js (https://github.com/ikreymer/browsertrix-cloud/pull/7) * Add prettier for formatting frontend files (https://github.com/ikreymer/browsertrix-cloud/pull/9) * Add frontend testing framework (https://github.com/ikreymer/browsertrix-cloud/pull/10) closes #4, closes #5
15 lines
230 B
JavaScript
15 lines
230 B
JavaScript
module.exports = {
|
|
mode: "jit",
|
|
|
|
purge: {
|
|
content: ["./*.html", "./src/*.js"],
|
|
options: {
|
|
safelist: [/data-theme$/],
|
|
},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
extract: {
|
|
include: ["./src/*.js"],
|
|
},
|
|
};
|